#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
double a,b;
cout<<"a= ";
cin>>a;
cout<<"b= ";
cin>>b;
a=a+b;
b=a-b;
a=a-b;
cout<<"The swapped values are:"<<endl;
cout<<"a= "<<a<<endl;
cout<<"b= "<<b;
gotoxy(25,24); cout<<"Press any key to continue......";
getch();
}