1. 程式人生 > >洛谷P1001 A+B Problem

洛谷P1001 A+B Problem

這道題…………還是很簡單!!!

 

code:

 

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