输入两个整数,求这两个整数的和是多少。
3 4
7
using namespace std;
int main() { int a, b; cin >> a >> b; cout << a + b << endl; return 0; } ```