第一行去掉结尾的分号第四行最后加上分号第五行b前面加上一个&
int main(){int a,b;printf("input a,b");scanf("%d%d",&a,&b);a=a+b;b=a-b;a=a-b;printf("a=%d\nb=%d",a,b);return 0;}这是更改后的