mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-07 23:38:47 +00:00
7 lines
86 B
Text
7 lines
86 B
Text
|
|
var x = read (), y = read ();
|
||
|
|
write (x);
|
||
|
|
write (y);
|
||
|
|
x := y := 5;
|
||
|
|
write (x);
|
||
|
|
write (y)
|