본문 바로가기
python-algorithm

백준 3765 Celebrity jeopardy

by 무적김두칠 2022. 11. 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

반응형

'python-algorithm' 카테고리의 다른 글

백준 11800 Tawla  (0) 2022.12.01
백준 14614 Calculate!  (0) 2022.12.01
백준 14954 Happy Number  (0) 2022.11.30
백준 12778 CTP공국으로 이민 가자  (0) 2022.11.30
백준 11104 Fridge of Your Dreams  (0) 2022.11.30

댓글