1 //第一题解题报告
 2 
 3 //入门题
 4 
 5 #include<stdio.h>
 6 int main(void)
 7 {
 8     int a,b;
 9     while(scanf("%d%d",&a,&b)!=EOF)
10         printf("%d\n",a+b);
11     return 0;   
12 }

 

 

相关文章:

  • 2021-09-25
  • 2021-06-14
  • 2022-12-23
  • 2022-03-05
  • 2021-09-18
  • 2022-12-23
  • 2022-12-23
  • 2022-02-04
猜你喜欢
  • 2021-07-22
  • 2021-05-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-05
  • 2021-09-04
  • 2021-06-02
相关资源
相似解决方案