已解决 杨文轩 新手光能 题目链接: 酷町堂:4215 #include<iostream> using namespace std; int main(){ int a,b,tmp; cin>>a>>b; tmp=a; a=b; b=tmp; cout<<a<<b; return 0; }