输入两个整数,求这两个整数的和是多少。
#include<iostream> int main() { int a,b; std::cin>>a>>b; std::cout<<a+b<<'\n'; return 0; }