5605 - 交换变量的值

#include<stdio.h>
int main()
{
	int a,b,t;
	scanf("%d %d",&a,&b);
	t=a;
	a=b;
	b=t;
	printf("%d %d",a,b);
	return 0;
}