fun plus (x) { fun f (y) { return x + y } return f } local x = read (); write (plus(5)(6)); write (plus(8)(10))