P1001 A+B Problem
https://www.luogu.com.cn/problem/P1001
这简单的代码:
#include <iostream> #include <cstdio> using namespace std; int main() { int a,b; cin >> a >> b; cout << a+b; return 0; }
P1001 A+B Problem
https://www.luogu.com.cn/problem/P1001
这简单的代码:
#include <iostream> #include <cstdio> using namespace std; int main() { int a,b; cin >> a >> b; cout << a+b; return 0; }