#include
#include
using namespace std;
int main()
{
int cnt = 0;
string substr, str;
cin >> substr >> str;
for (size_t i = 0; i < str.length()-substr.length()+1; i++)
{
for (size_t j = 0; j < substr.length(); j++)
{
if (str[i+j] != substr[j])
{
break;
}
else
{
if (j == substr.length() - 1) ++cnt;
}
}
}
cout << cnt;</p>
return 0;
}
Все тесты которые ты написал, отработали.