求两个整数的和。
一行,两个用空格隔开的整数。
两个整数的和。
1 2
3
#include <iostream> using namespace std; int main () { int a,b,c; cin>>a>>b; c=a+b; cout<<c; }