c语言 A+B

卑微的人类 edited 4 年,3 月前

include

int main(){
int a;
int b;
scanf(“%d %d”,&a,&b);
printf(“%d”,a+b);
}

Comments