def add(a,b=0): print ("Sum of ", a ,"and ", b, "is" ,a+b) a=10 b=20 add(a,b) add(a)