while True:
s = list(input().split())
if int(s[1]) > 17 or int(s[2]) >= 80:
print(s[0], "Senior")
elif s[0] == "#" and s[1] == '0' and s[2] == '0':
break
else:
print(s[0], "Junior")
'Python > 백준' 카테고리의 다른 글
백준 - 1978 소수 찾기 (0) | 2022.10.06 |
---|---|
백준 10768 - 특별한 날 (0) | 2022.10.05 |
백준 - 10101 삼각형 외우기 (0) | 2022.10.03 |
백준 9316 - Hello Judge (0) | 2022.10.02 |
백준 - 10988 펠린드롬인지 확인하기 (0) | 2022.10.01 |