- POJ 1000 - A+B Problem
- Time: 1000MS
- Memory: 10000K
- 难度: 水题
- 分类: 无
问题描述
参见 http://poj.org/problem?id=1000
解题思路
水题,直接求解即可。
AC 源码
/*
Author: Exp
Date: 2017-11-29
Code: POJ 1000
Problem: a加b
URL: http://poj.org/problem?id=1000
*/
#include <iostream>
using namespace std;
int main(void) {
int a, b;
cin >> a;
cin >> b;
cout << a + b << endl;
//system("pause");
return 0;
}