A+B求和

#include /*两个整数a,b(0 <= a,b <= 10),计算a + b*/ main() { int a,b; scanf("%d%d",&a,&b); printf("a+b=%d\n",a+b); return 0; }
posted @ 2020-06-09 20:42  ALOE218  阅读(326)  评论(0编辑  收藏  举报