#include <iostream>
#include <fstream>

using namespace std;

int main()
{
    int a,b;
    ifstream f("input.in");
    ofstream g("output.out");
    f>>a>>b;
    g<<a+b;
    f.close();
    g.close();

    return 0;
}