Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- target = int(input())
- sum = 0
- while target > sum:
- service = input()
- if service == "closed":
- break
- else:
- person = input()
- if service == "haircut":
- if person == "mens":
- sum += 15
- elif person == "ladies":
- sum += 20
- elif person == "kids":
- sum += 10
- elif service == "color":
- if person == "touch up":
- sum += 20
- elif person == "full color":
- sum += 30
- if sum >= target:
- print("You have reached your target for the day!")
- else:
- print(f"Target not reached! You need {target - sum}lv.more.")
- print(f"Earned money: {sum}lv.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement