import java.util.*;
public  class  Main {
    public static  void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        while (sc.hasNext()){
            String a = sc.nextLine();
            String b = sc.nextLine();
            String[] array = a.split("");  //将 短字符串 切分并放入数组中
            //定义计数器并初始化
            int count = 0;
            for (int i = 0; i < array.length; i++) {
                if (b.contains(array[i])){
                  // 循环判断 长字符串 中是否包含 短字符串中的字符
                  // 如果包含,则计数器加一
                    count++;  
                }
            }
          // 当计数器大小 等于 原短字符串生成的数组长度时 ,即为 短字符串的所有字符均在长字符串中出现过
            if (count == array.length){
                System.out.println(true);
            }else {
                System.out.println(false);
            }
        }

    }
}