Files
homework/666/dog.cpp
hehe 91da12510e 镇乃天子
我是无惨
2026-04-18 05:50:37 -04:00

23 lines
227 B
C++

#include<iostream>
using namespace std;
void myswap(int &i,int &j){
int x;
x=i;
i=j;
j=x;
}
int main(){
int a,b,c;
cin>>a>>b;
myswap(a,b);
cout<<a<<" "<<b<<endl;
return 0;
}