'''
注意
for
    ...
else
    ...
的组合用法
'''
str1 = list(input())
str2 = list(input())
for i in str1:
    if i not in str2:
        print('false')
        break
else:
        print('true')