1234567891011121314151617181920212223242526
#include <iostream> #include <string> using namespace std; int main() { int t; cin >> t; string str1; string str2 ("simon says"); cin.ignore(); for (int i=0; i<t; i++) { getline(cin,str1); cin.clear(); if (str1.compare(0,10,str2,0,10) == 0){ cout << str1.substr(11,str1.size()) << endl; } else cout << endl; } return 0; }