题解 | #字符串字符匹配#
字符串字符匹配
http://www.nowcoder.com/practice/22fdeb9610ef426f9505e3ab60164c93
```while True:
try:
str1 = list(input())
str2 = list(input())
for i in str1:
if i not in str2:
print('false')
break
else:
print('true')
except:
break