Advertisement
veronikaaa86

03. Vacation

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