acc/tests/input05
2023-02-07 10:32:03 +08:00

10 lines
89 B
Plaintext

{
int i; int j;
i=6; j=12;
if (i < j) {
print i;
} else {
print j;
}
}