mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 06:48:48 +00:00
9 lines
No EOL
110 B
Text
9 lines
No EOL
110 B
Text
var x, y;
|
|
|
|
x := read ();
|
|
write (x);
|
|
y := read ();
|
|
write (y);
|
|
if x then x else y fi := 18;
|
|
write (x);
|
|
write (y) |