#include <iostream>
#include <string>
#include<unordered_set>
using namespace std;
int main()
{
    string s;
    getline(cin, s);
    char c;
    cin>>c;
    unordered_multiset<char> set;
    for (char c : s) {
        set.insert(tolower(c));
    }
    int n=set.count(tolower(c));
    cout << n << endl;
}

有两个c,感觉不妥的自己看着重命名一下吧。