OneCompiler

Add Two Numbers

125

a=int(input("enter a number 1:"))
b=int(input("enter a number 2:"))
sum=a+b
print("the sum of a and b is=",sum)