#include using namespace std; int main() { string S, T; cin >> S >> T; int sl = S.size(), tl = T.size(); int c = 0; for (int i = 0; i < sl;) { if (S.at(i) == T.at(0)) { string x = S.substr(i, tl); if (x == T) { c++; i += tl; } else { i++; } } else { i++; } } cout << c << endl; }