Files
rxcc/test.c

9 lines
136 B
C

int main() {
int tomas = 1;
int jefferson = 3;
tomas *= jefferson;
jefferson *= tomas;
return tomas * jefferson;
}