#include<stdio.h>//此代码为交换数值int main(){int a,b,t;//中间变量tscanf("%d%d",&a,&b);t=a;a=b;b=t;//这样交换printf("%d %d",a,b);return 0;}