https://www.acmicpc.net/problem/2083
풀이
# 2038번 럭비 클럽
while True:
person = input().split()
if person[0] =='#':
break
name = person[0]
age = int(person[1])
weight = int(person[2])
if age > 17 or weight >= 80:
print(name, "Senior")
else:
print(name, "Junior")
출력결과
'백준 > 구현' 카테고리의 다른 글
[백준][Python] 10039번 평균 점수 - 코팩 (0) | 2022.09.26 |
---|---|
[백준][Python] 1373번 2진수 8진수 - 코팩 (0) | 2022.09.26 |
[백준][Python] 5532번 방학 숙제 - 코팩 (0) | 2022.09.24 |
[백준][Python] 10156번 과자 - 코팩 (0) | 2022.09.23 |
[백준][Python] 14623번 감정이입 - 코팩 (0) | 2022.09.22 |