// C++写法
#include<iostream>
using namespace std;
int main()
{
     int a,b;
     cin>>a>>b;
     cout<<a+b<<endl;
     return 0;
}
// C写法
#include<stdio.h>
int main()
{
      int a,b;
      scanf("%d %d",&a, &b);
      printf("%d\n",a+b);
      return 0;
}

相关文章:

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