ydpetkov

personal_titles

Jul 24th, 2022 (edited)
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. age = float(input())
  2. sex = input()
  3.  
  4. if sex == "m":
  5. if age >= 16:
  6. print("Mr.")
  7. else:
  8. print("Master")
  9.  
  10. if sex == "f":
  11. if age >= 16:
  12. print("Ms.")
  13. else:
  14. print("Miss")
  15.  
  16.  
Add Comment
Please, Sign In to add comment