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