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

[백준/파이썬] 2789번 유학 금지

by 현장 2021. 11. 21.

-코드

d = 'CAMBRIDGE'
s = input()
for i in s:
    if i in d:
        continue
    print(i, end='')