by CodeChum Admin
Let's now try finding a certain digit into an integer! Come and join in on the fun and code with me!
Instructions:
Input
A line containing two integers separated by a space.
1·231214238
Output
A line containing a string.
Yes
line = input()
words = line.split()
if words[0] in words[1]:
print('Yes')
else:
print('No')
Comments
Leave a comment