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

[백준/파이썬] 9253번 스페셜 저지

by 현장 2024. 8. 7.

-Code

a = input()
b = input()
s = input()

print("YES" if s in a and s in b else "NO")