print("Let's fry eggs!") num_peo = input("How many people will you serve?") print("Really?", int(num_peo), "people?") eggs_per = input("How many eggs per person?") total_eggs = int(num_peo) * int(eggs_per) print("Get", total_eggs, "eggs from the fridge!") |
Silver Announcements >