지나가던 개발자

[Python] 백준 2789번(유학 금지) 문제 풀이 본문

PS/Python

[Python] 백준 2789번(유학 금지) 문제 풀이

KwonYongHyeon 2022. 3. 12. 13:18

 

 나는 유학 가고싶은데... 흙흑ㄱ.. (?)

 

cambridge = list('CAMBRIDGE')
for i in input():
    if i in cambridge:
        continue
    print(i, end='')
Comments