Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def add(a,b):
- print(a+b)
- def sub(a,b):
- print(a-b)
- def multiply(a,b):
- print(a*b)
- def divide(a,b):
- print(a/b)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement