Saturday, 3 November 2012

Working of input()


##this program is working with input() and taking two numbers from User and applying addition on them
this is the working of input() keyword.


num1=input('Enter first number: ')
num2=input('Enter Second Number: ')
print 'Answer is: ',num1+num2

No comments:

Post a Comment