python中字符串可以是为数组。所以用数组的内置函数 .count(),就可以直接获取出现次数啦~

st1 = input().lower()
st2 = input().lower()
print(st1.count(st2))