lama_byterun/regression/test083.lama

12 lines
150 B
Text
Raw Normal View History

var n, y;
2020-01-05 03:33:17 +03:00
fun test (n, m) {
var i, s;
2020-01-05 03:33:17 +03:00
write (n);
write (m);
n
}
n := read ();
y := 1 + (2 + (3 + (4 + (5 + (6 + test (7, 7))))));
write (y)