#define _LIBCPP_DEBUG 0 #include using namespace std; typedef long long int ll; ll MOD = 1e9 + 7; int main(void) { string S,T; cin>>S>>T; int S_size = S.size(); int T_size = T.size(); int cnt = 0; for (int i = 0; i < S_size-T_size+1; ++i) { if(S.substr(i,T_size)==T) { cnt++; S[i+T_size-1]='.'; } } cout<