Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Online Python IDE
- # Online Python - IDE, Editor, Compiler, Interpreter
- def sum(a, b):
- return (a + b)
- a = int(input('Enter 1st number: '))
- b = int(input('Enter 2nd number: '))
- print(Sum of {a} and {b} is {sum(a, b)}')
- for more:https://linkjust.com/Gwr4On
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement