01 A+B问题

      经典的A+B Problem——各大题库上的首题。读入$a,b$,输出$a+b$。

#include <iostream>
using namespace std;
int main()
{
    int a,b;
    cin>>a>>b;
    cout<<a+b<<endl;
    return 0;
}
01.cpp

相关文章:

  • 2021-08-06
  • 2022-12-23
  • 2022-12-23
  • 2021-05-17
  • 2021-06-18
  • 2021-11-08
  • 2022-02-08
  • 2021-05-15
猜你喜欢
  • 2021-12-10
  • 2022-02-08
  • 2021-12-18
  • 2021-12-26
  • 2021-12-26
  • 2021-11-23
  • 2021-06-06
相关资源
相似解决方案