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

[백준/파이썬] 16171번 나는 친구가 적다 (Small)

by 현장 2021. 11. 24.

-코드

s = input()
key = input()
s2 = ''
num = '0123456789'
for i in s:
    if i not in num:
        s2 += i
if key in s2:
    print(1)
else:
    print(0)