Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- command = input()
- adults = 0
- kids = 0
- while command != "Christmas":
- years = int(command)
- if years <= 16:
- kids += 1
- else:
- adults += 1
- command = input()
- kidsPrice = kids * 5
- adultsPrice = adults * 15
- print(f"Number of adults: {adults}")
- print(f"Number of kids: {kids}")
- print(f"Money for toys: {kidsPrice}")
- print(f"Money for sweaters: {adultsPrice}")
- Леко тарикатската:)
- adults = 0
- kids = 0
- while True:
- command = input()
- if command == "Christmas":
- break
- if int(command) <= 16:
- kids += 1
- else:
- adults += 1
- print(f"Number of adults: {adults}")
- print(f"Number of kids: {kids}")
- print(f"Money for toys: {kids * 5}")
- print(f"Money for sweaters: {adults * 15}")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement