Guest User

Untitled

a guest
Oct 22nd, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. def add(a, b):
  2. print "adding all items"
  3. return a + b
  4.  
  5. fruits = raw_input("Please write the number of fruits you have n> ")
  6. beverages = raw_input("Please write the number of beverages you have n> ")
  7.  
  8. all_items = add(fruits, beverages)
  9. print all_items
Add Comment
Please, Sign In to add comment