#include <fstream>

using namespace std;

int main()
{
    int a, b;
    ifstream f;
    ofstream g;
    f>>a>>b;
    g<<a+b;
    return 0;
}