#include <iostream>
#include <cstdio>
#include <cstring>
#include <string.h>
#include <queue>
using namespace std;
int a,b;

int main()
{
    while(scanf("%d%d",&a,&b) != EOF)
    {
        printf("%d\n",(a+b));
    }
    return 0;
}

相关文章:

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