The input contains two integers a and b (0 ≤ a, b ≤ 103), separated by a single space.
OutputOutput the sum of the given integers.
Sample test(s) input5 14output
19input
381 492output
873普通的A+B,不过得连续提交6次才行。。。。
#include
#include
#include
#include
using namespace std; int main() { long long int a,b; cin>>a>>b; cout<