mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 06:48:48 +00:00
13 lines
No EOL
141 B
Text
13 lines
No EOL
141 B
Text
fun f (a) {
|
|
fun g (b) {
|
|
fun h (c) {
|
|
fun (x) { x + a + b + c}
|
|
}
|
|
h (b)
|
|
}
|
|
g (a)
|
|
}
|
|
|
|
var x = read ();
|
|
|
|
write (f(10)(5)) |