Files
2025-05-28 14:19:58 +03:00

7 lines
80 B
Plaintext

BEGIN
x := 0;
write(x++);
write(x);
write(++x);
write(x)
END