Advertisement
desislava_topuzakova

06. Cake

May 19th, 2020
1,258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.64 KB | None | 0 0
  1. width = int(input())
  2. length = int(input())
  3. #броя парчета =
  4. pieces = width * length
  5.  
  6. # стоп: pieces <= 0
  7. #продължават да си взимат: pieces > 0
  8.  
  9. while pieces > 0:
  10.     #команда -> STOP или брой парчета
  11.     command = input()
  12.     if command == 'STOP':
  13.         print(f'{pieces} pieces are left.')
  14.         break
  15.     else:
  16.         #брой парчета под формата на стринг
  17.         taken_pieces = int(command)
  18.         pieces -= taken_pieces
  19. else: #ако тортата свърши ->  pieces <= 0
  20.     print(f'No more cake left! You need {abs(pieces)} pieces more.')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement