S = input() T = input() cnt = S.count(T) if len(T) == 1: print(-1) else: print(cnt)