def add(a,b): print("Addition is :",a+b) a =int(input("Enter 1st No: ")) b =int(input("Enter 2nd No: ")) add(a,b)