let mult = \y. \x. if x <= 0 then 0 else y + this (x + -1) in let plus1 = \x. 1+x in mult (plus1 3 + plus1 2) 6