Files
rxcc/test.c

9 lines
136 B
C
Raw Normal View History

2026-01-31 15:07:04 -05:00
int main() {
2026-02-12 16:53:01 -05:00
int tomas = 1;
int jefferson = 3;
tomas *= jefferson;
jefferson *= tomas;
return tomas * jefferson;
2026-01-31 15:07:04 -05:00
}