P1001

A+BProblem(蒟蒻必切

就是定义两个整形数,然后输入,再输出和。(七年大水题

上代码

#include <bits/stdc++.h>  //万能头文件
using namespace std;
int main()
{
    int a,b;//定义两个整形数
    cin>>a>>b;//输入,其实不写万能头的话,就写iostream,包含cin 和 cout的
    cout<<a+b; //输出
    return 0;
}
上一篇:P1001 A+B Problem


下一篇:P1001 来源:洛谷