#include #include int main() { char S[10]; fgets(S, 10, stdin); int i = strchr(S, '?') - S; putchar("yukicoder"[i]); putchar('\n'); }