#include <stdio.h>
int main(void)
{
int a = 100;
int b = 200;
int tmp;
tmp = a; // ¨ç
a = b; // ¨è
b = tmp;
return 0;
}