#include using namespace std; int main(void) { cin.tie(0); ios::sync_with_stdio(false); string s, t; cin >> s; cin >> t; int res = 0; int n = s.length(); int m = t.length(); int idx = 0; while (1) { if (idx > n - m) { break; } if (s.substr(idx, m) == t) { res++; idx += m; } else { idx++; } } cout << res << '\n'; return 0; }