summaryrefslogtreecommitdiff
path: root/comp/work/6/cake.py
blob: 23f4e44919ae5e89b880cdb6765fc67117cf604a (plain)
1
2
3
4
5
6
7
8
while True:
    eggs = int(input("how many eggs are there: "))
    if eggs < 8:
        break
flour = eggs * 100
sugar = eggs * 50

print("you will need", flour, "grams and", sugar, "grams")