adding two number getting value from otherline

print ('Enter the value of x=')
x=int ( input())
print ('Enter the value of y=')
y=int(input())
print (x,'+',y,'=',x+y)

Comments

Popular Posts