#include <stdio.h>
#include <conio.h>
int main()
{
int x, y, temporay;
printf("Enter the value of x and y\n");
scanf("%d%d", &x, &y);
printf("Before Swapping\nx = %d\ny = %d\n",x,y);
temporay = x;
x = y;
y = temporay;
printf("After Swapping\nx = %d\ny = %d\n",x,y);
getch();
}