#include using namespace std; int main() { // 1. 入力情報取得. string S; cin >> S; // 2. 汚れて読めない1つの文字は? string const a = "yukicoder"; char ans = '?'; for(int i = 0; i < S.size(); i++){ if(a[i] != S[i]){ ans = a[i]; break; } } // 3. 後処理. cout << ans << endl; return 0; }