mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 14:58:50 +00:00
9 lines
144 B
Text
9 lines
144 B
Text
|
|
fun test (n, m) local i, s {
|
||
|
|
write (n);
|
||
|
|
write (m);
|
||
|
|
return n
|
||
|
|
}
|
||
|
|
|
||
|
|
n := read ();
|
||
|
|
y := 1 + (2 + (3 + (4 + (5 + (6 + test (7, 7))))));
|
||
|
|
write (y)
|