#include<stdio.h>
int main()
{
	
	//swap two numbers using bitwise operator
	int x,y;
	printf(" Please, Enter the 1st Number : ");
	scanf("%d",&x);
	printf("\n Please, Enter the 2nd Number : ");
	scanf("%d",&y);
	//swapping -------->>
	x=x^y;
	y=x^y;
	x=x^y;
	printf("\n Now, the Numbers are : %d and %d",x,y);
	return 0;
}