문제 링크

정답 :

def solution(str1, str2):
    
    if str1 in str2:
        return 1
    
    return 0