Advertisement
veronikaaa86

03. Vacation

Jul 31st, 2022 (edited)
523
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. needed_money = float(input())
  2. init_money = float(input())
  3.  
  4. all_days_count = 0
  5. count_spend_days = 0
  6. total_money = init_money
  7. while total_money < needed_money:
  8. if count_spend_days == 5:
  9. break
  10.  
  11. action = input()
  12. amount = float(input())
  13. all_days_count += 1
  14.  
  15. if action == "spend":
  16. count_spend_days += 1
  17. total_money -= amount
  18. if total_money < 0:
  19. total_money = 0
  20. elif action == "save":
  21. count_spend_days = 0
  22. total_money += amount
  23.  
  24. if count_spend_days == 5:
  25. print("You can't save the money.")
  26. print(all_days_count)
  27. else:
  28. print(f"You saved the money for {all_days_count} days.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement