#include <cctype> #include <iostream> #include <string> using namespace std; int main() { string s1,s2; int cnt = 0; getline(cin,s1); getline(cin,s2); char c1 = s2[0]; char c2 = tolower(c1); for(auto c : s1) { c = tolower(c); if(c == c2 )cnt++; } cout<<cnt<<endl; } // 6...