Skip to content

Instantly share code, notes, and snippets.

@krishnaprajapat
Created July 22, 2018 13:45
Show Gist options
  • Save krishnaprajapat/e673065d4fbefd3286ea6ded9de9f71a to your computer and use it in GitHub Desktop.
Save krishnaprajapat/e673065d4fbefd3286ea6ded9de9f71a to your computer and use it in GitHub Desktop.
Python program to add two number enter by user
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