交换两数值
一行两个数
一行 两个数
3 4
4 3
#include<iostream> using namespace std; int main() { int a,b,c; cin>>a>>b; c=a; a=b; b=c; cout<<a<<" "<<b; return 0; }