#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); string S; cin >> S; string T = "yukicoder"; for (int i = 0; i < (int)T.size(); i++) { if (S[i] != T[i]) cout << T[i] << '\n'; } return 0; }