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