# Create a dictionary mapping each subtitle to its corresponding numbering sub_to_num = { "Zelkova and Cherry": "1st", "BANNED CONTEST": "2nd", "Stray Bullet": "3rd", "Early Summer Rain": "4th", "Do you know Cherry Contest?": "Alpha" } # Read the input and output the corresponding value from the dictionary S = input().strip() print(sub_to_num[S])