s = input() t = input() if t not in s: print(0) elif len(t) == 1: print(-1) else: print(s.count(t))