请输所给A + B的值
#include<iostream>
usingnamespacestd;
intmain()
{
    longlongA,B;
    while(cin>>A>>B)
    {
    cout<<(longlong)A+B<<endl;
    }
}