3 def niming(a,b,func): 4 5 result = func(a,b) 6 return result 7 8 num = niming(11,12,lambda x,y:x+y) 9 print(num) ~