Evanyou Blog 彩带
扩大
缩小

洛谷P1001 A+B Problem

这道题就是编程入门最基础的例题,非常蒟蒻。

上code(C++):

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

 

posted @ 2018-09-06 18:22  yi_heng  阅读(127)  评论(0编辑  收藏  举报