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