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