编辑代码

#include <stdio.h>
int main () {
int a,b,sum;
a=123;
b=456;
sum=a+b;
 printf("123与456的和是%d\n",sum);
	return 0;
}