본문 바로가기
백준문제/브론즈 4

백준) 2083번 - python

by kiseno 2024. 3. 15.
728x90
반응형
SMALL
while True:
    a = list(map(str, input().split()))
    if "#" and "0" and "0" in a: break
    else: print(f"{a[0]} Senior" if int(a[1]) > 17  or int(a[2]) >= 80 else f"{a[0]} Junior" )
728x90
반응형
LIST

'백준문제 > 브론즈 4' 카테고리의 다른 글

백준) 2845번 - python  (0) 2024.03.20
백준) 2742번 - python  (0) 2024.03.19
백준) 2530번 - python  (0) 2024.03.18
백준) 2480번 - python  (0) 2024.03.17
백준) 2440번 - python  (0) 2024.03.16