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)
x=int ( input())
print ('Enter the value of y=')
y=int(input())
print (x,'+',y,'=',x+y)
Comments
Post a Comment