python-algorithm

백준 3765 Celebrity jeopardy

무적김두칠 2022. 11. 30. 23:30

https://www.acmicpc.net/problem/3765

 

3765번: Celebrity jeopardy

It’s hard to construct a problem that’s so easy that everyone will get it, yet still difficult enough to be worthy of some respect. Usually, we err on one side or the other. How simple can a problem really be? Here, as in Celebrity Jepoardy, questions

www.acmicpc.net

 

1
2
3
4
5
6
7
if __name__ == '__main__':
    while True:
        try:
            s = input()
        except:
            break
        print(s)
cs

입력받은 문자열 그대로 출력하면 됩니당
Print input string

반응형