//
//  main.cpp
//  abc
//
//  Created by Alex Rancea on 11/02/15.
//  Copyright (c) 2015 Alex Rancea. All rights reserved.
//

#include <iostream>
using namespace std;

int main(int argc, const char * argv[]) {
    // insert code here...
    int a,b;
    cin>>a>>b;
    cout<<a+b;
    return 0;
}