S002-AC.cc 257 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 #include <iostream> #include <string> using namespace std; int main() { char c; string str; while(cin >> c) { if(c == 'a') { cout << "yes" << endl; getline(cin,str); continue; } else if(c == '.') { cout << "no" << endl; } } }