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