#include<stdio.h>

void main()

{

int a=1,b=0,t;

t=a;a=b;b=t;

printf("a=%d\n",a);

printf("b=%d\n",b);   

}