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