#include #include using namespace std; int main(){ string sent; string right = "yukicoder"; cin >> sent; for(int i = 0; i < 9; i++){ if(sent[i] != right[i]) cout << right[i] << endl; } return 0; }