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

8 lines
69 B
Plaintext

{ int i;
i=1;
while (i <= 10) {
print i;
i= i + 1;
}
}