mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-07 23:38:47 +00:00
9 lines
110 B
Text
9 lines
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)
|