输入两个整数,求这两个整数的和是多少。
3 4
直接上 C++ 代码
#include <bits/stdc++.h> using namespace std; int main() { int a,b; cin >> a >> b; cout << a+b; return 0; }