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

[백준/파이썬] 31495번 그게 무슨 코드니..

by 현장 2024. 3. 4.

-Code

s = input()

if s[0] == '\"' and s[-1] == '\"' and len(s) > 2:
    print(s[1:-1])
    exit()
print("CE")