#include<iostream>
//#include<iomanip>
//#include<cmath>
using namespace std;
void swap(int &,int &);
void main()
{
int a=2,b=10;
swap(a,b);
cout<<"a="<<a<<",b="<<b<<endl;
}
void swap(int &a,int &b)
{
int temp=a;
a=b;
b=temp;
}