mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-05 22:38:44 +00:00
12 lines
No EOL
150 B
Text
12 lines
No EOL
150 B
Text
var n, y;
|
|
|
|
fun test (n, m) {
|
|
var i, s;
|
|
write (n);
|
|
write (m);
|
|
n
|
|
}
|
|
|
|
n := read ();
|
|
y := 1 + (2 + (3 + (4 + (5 + (6 + test (7, 7))))));
|
|
write (y) |