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

[백준/파이썬] 16916번 부분 문자열

by 현장 2022. 5. 13.

-Code

p = input()
s = input()
print(1 if s in p else 0)