recent

>>> COBOL COMPILER  >>> Make your Computer Welcome You  >>> Windows KMS Activator Free Download + How to Use Windows KMS Activator Ultimate Edition ...   >>> Remove Shortcut Virus From Pen Drive & SD Card  >>> Download and Install Turbo C++or C Software  >>> ലാപ്‌ടോപ് വാങ്ങുമ്പോള്‍ ഈ 6 കാര്യങ്ങൾ ശ്രദ്ധിക്കരുത്!...   >>> How to Get Deleted Files Back from USB or Hard Drive  >>> How To Make Your Own Subtitles With Any Text Editor  >>> How To Clean your RAM using Notepad  >>> Clear Recent Documents Windows 7 & 8    undefined

Thursday, 1 October 2015

Python Program to Add Two Numbers

# Store input numbers
num1 = input('Enter first number: ')
num2 = input('Enter second number: ')
# Add two numbers
sum = float(num1) + float(num2)
print('The sum of {0} and {1} is {2}'.format(num1, num2, sum))

No comments :

Post a Comment