A+B求和

#include /*两个整数a,b(0 <= a,b <= 10),计算a + b*/ main() { int a,b; scanf("%d%d",&a,&b); printf("a+b=%d ",a+b); return 0; }
原文地址:https://www.cnblogs.com/aloe218/p/13080578.html