Arksiana

4. Easter Shop

Nov 12th, 2020
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.54 KB | None | 0 0
  1. eggs_number = int(input())
  2.  
  3. sold_eggs = 0
  4.  
  5. command = input()
  6.  
  7. while command != "Close":
  8.     extra_eggs = int(input())
  9.     if command == "Buy":
  10.         if extra_eggs > eggs_number:
  11.             break
  12.         eggs_number -= extra_eggs
  13.         sold_eggs += extra_eggs
  14.  
  15.     elif command == "Fill":
  16.         eggs_number += extra_eggs
  17.     command = input()
  18.  
  19.  
  20. if command == "Close":
  21.     print("Store is closed!")
  22.     print(f"{sold_eggs} eggs sold.")
  23. else:
  24.     print("Not enough eggs in store!")
  25.     print(f"You can buy only {eggs_number}.")
Advertisement
Add Comment
Please, Sign In to add comment