#C8413. Marathon Tagline Generator

    ID: 52393 Type: Default 1000ms 256MiB

Marathon Tagline Generator

Marathon Tagline Generator

The Marathon Tagline Generator problem is a simple conditional problem where you must generate a customized tagline for a marathon runner based on their age and gender. Given the participant's age and gender, apply the following rules:

(\textbf{Rule 1:}) If (age < 18), output "Young Runner (Boys)" for males and "Young Runner (Girls)" for females.

(\textbf{Rule 2:}) If (18 \leq age < 40), output "Marathon Warrior (Men)" for males and "Marathon Warrior (Women)" for females.

(\textbf{Rule 3:}) If (age \geq 40), output "Experienced Runner (Men)" for males and "Experienced Runner (Women)" for females.

Input is read from standard input and the result is printed to standard output.

inputFormat

The input consists of two lines. The first line contains an integer representing the participant's age. The second line contains a string representing the participant's gender (either "male" or "female").

outputFormat

Output a single line containing the appropriate tagline based on the participant's age and gender.## sample

10
male
Young Runner (Boys)