/******************************************************************************
Online C++ Compiler.
Code, Compile, Run and Debug C++ program online.
Write your code in this editor and press "Run" button to compile and execute it.
*******************************************************************************/
#include <iostream>
#include <string>
using namespace std;
int main(){
string a, b;
cin>>a>>b;
int nr=0, s=a.size();
while (true){
int c = b.find(a);
if(c != -1){
nr++;
b.erase(0, c+s);
}
else
break;
}
cout<<nr;
return 0;
}