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