Advertisement
veronikaaa86

08.Cinema Ticket

Jan 22nd, 2022
338
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. day = input()
  2.  
  3. price = 0
  4. if day == "Monday" or day == "Tuesday" or day == "Friday":
  5. price = 12
  6. elif day == "Wednesday" or day == "Thursday":
  7. price = 14
  8. elif day == "Saturday" or day == "Sunday":
  9. price = 16
  10.  
  11. print(price)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement