- P121's solution
P121's Solution
- 2025-9-5 18:34:30 @
出题人题解。
#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;
}