#include using namespace std; int main(){ string s ="yukicoder",in; char c; cin >> in; for(int i=0; i< s.length();i++){ if(s[i] != in[i]) c = s[i]; } cout << c; }