Beakjoon&프로그래머스/파이썬

[백준/파이썬] 33845번 PNUPC에 한 번도 빠지지 않고 출연한 산지니가 새삼 대단하다고 느껴지네

현장 2025. 5. 13. 20:58

-Code

s = input()
t = input()
res = ""

for ch in t:
    if ch not in s:
        res += ch

print(res)