出题人题解。

#include<bits/stdc++.h>
using namespace std;
string op;
int idd;
char ch;
int main(){
    cin>>op>>idd>>ch;
    if(op=="CF"){
        cout<<op<<idd<<ch<<endl;
    }else{
        cout<<op<<idd<<"Contest_"<<ch;
    }
    return 0;
}