题解 | #字符串字符匹配#
字符串字符匹配
http://www.nowcoder.com/practice/22fdeb9610ef426f9505e3ab60164c93
while True:
try:
a=input()
b=input()
flag=1
for i in a :
if i in b:
pass
else:
flag=0
break
if flag==1:
print('true')
else:
print('false')
except:
break