#include <iostream>
#include <fstream>

using namespace std;

long long a,b;

int main()
{
    FILE *f=fopen("Input","r");
    FILE *g=fopen("Output","w");
    fscanf(f,"%lld%lld",&a,&b);
    fprintf(g,"%lld",a+b);
    return 0;
}