#include using namespace std; int main(){ cin.tie(0),ios::sync_with_stdio(false); string s,t; cin>>s>>t; int ans=0; auto pos=s.find(t,0); if(t.size()>1)while(pos!=string::npos){ pos=s.find(t,pos+t.size()); ++ans; } else ans=-1; cout<