9 lines
136 B
C
9 lines
136 B
C
int main() {
|
|
int tomas = 1;
|
|
int jefferson = 3;
|
|
tomas *= jefferson;
|
|
jefferson *= tomas;
|
|
return tomas * jefferson;
|
|
}
|
|
|