#include<stdio.h>
int main(){
int a,b;
int sum;
printf("a+b=");
scanf("%d""%d",&a,&b);
sum=a+b;
printf("和%d\n",sum);
return 0;
}
whats wrong