#include <iostream>
#include <fstream>
using namespace std;
ifstream f("Input");
ofstream g("Output");
int main()
{   int a,b;
    f>>a>>b;
    g<<a+b;
    f.close();
    g.close();
    return 0;
}