#include<iostream.h>
#include<conio.h>
int main()
{
int d1, d2, temp;
clrscr();
cout<<"Enter the first number : ";
cin>>d1;
cout<<"Enter the second number : ";
cin>>d2;
temp = d1;
d1 = d2;
d2 = temp;
cout<<"The value numbers after swapping is :"<<endl;
cout<<"First no. : "<<d1<<endl;
cout<<"Second no. : "<<d2;
getch();
return 0;
}