Created
July 22, 2018 13:45
-
-
Save krishnaprajapat/e673065d4fbefd3286ea6ded9de9f71a to your computer and use it in GitHub Desktop.
Python program to add two number enter by user
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a=input('enter first number:') | |
b=input('enter second number:') | |
c=a+b | |
print('sum of a&b is {0} '.format(c) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment