#include<stdio.h>

int main()

{

int a=10;

int b=20;

int tem;

tem=a;

a=b;

b=tem;

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

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

return 0;

}