글자 하나씩 가져와서 넣고 안에 해당 글자가 있으면 초기화 한다.
word = list(map(str, input())) key = input() tmp = '' cnt = 0 for i in word: tmp += i if key in tmp: cnt += 1 tmp = '' print(cnt)