#include<stdio.h>
int main(){
 int a,b,temp;
 printf("enter the value of a,b");
 scanf("%d%d",&a,&b);
 a=temp;
 temp=b;
 b=a;
 printf("swap two values"&a,&b);
 return 0;
 }