#include using namespace std; int main() { char s[10],t[10]="yukicoder"; scanf("%s", s); for (int i = 0; i < 9; ++i) { if (s[i] != t[i]) printf("%c\n", t[i]); } return 0; }