#include using namespace std; long long a,b; int main() { freopen("input.in","r",stdin); freopen("output.out","w",stdout); scanf("%lld%lld",&a,&b); printf("%lld",a+b); }