#include <iostream> #include<sstream> #include<string> using namespace std; int main() { string str; while(getline(cin,str)){ stringstream ss(str); string from,to; cin>>from>>to; string res; string tmp; while(ss>>tmp){ if(tmp==from){ res+=to+' '; } else{ res+=tmp+' '; } } cout<<res<<endl; } } // 64 位输出请用 printf("%lld")