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