class Solution { public int solution(String str1, String str2) { if (str2.contains(str1)) { return 1; } return 0; } }