1000.a+b。

#include<bits/stdc++.h>
using namespace std;

int a,b;

int main()
{
    ios::sync_with_stdio(false);
    while(~scanf("%d%d",&a,&b)) printf("%d\n",a+b);
    return 0;
}
View Code

相关文章:

猜你喜欢
  • 2021-06-10
  • 2022-12-23
  • 2022-01-07
相关资源
相似解决方案