본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 3765번 Celebrity jeopardy

by 현장 2023. 1. 13.

-Code

while 1:
    try:
        s = input()
        print(s)
    except EOFError:
        break