-Code
for _ in range(int(input())):
a, b, c, d = input().split()
b = int(b.split('/')[0])
c = int(c.split('/')[0])
print(a, end=" ")
if b >= 2010 or c >= 1991:
print("eligible")
elif int(d) >= 41:
print("ineligible")
else:
print("coach petitions")
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 32326번 Conveyor Belt Sushi (0) | 2024.09.21 |
---|---|
[백준/파이썬] 19813번 Dates (0) | 2024.09.20 |
[백준/파이썬] 20216번 Ducky Debugging (0) | 2024.09.18 |
[백준/파이썬] 32306번 Basketball Score (1) | 2024.09.17 |
[백준/파이썬] 32314번 Christmas Tree Adapter (0) | 2024.09.17 |