s1, s2 = input(), input()
print('YES' if s2 in s1 else 'NO')
Объяснение:
s1 = input()
s2 = input()
if s2 in s1:
print('Yes')
else:
print('No')
s1, s2 = input(), input()
print('YES' if s2 in s1 else 'NO')
Объяснение:
Объяснение:
s1 = input()
s2 = input()
if s2 in s1:
print('Yes')
else:
print('No')