#include #define ll long long using namespace std; int main(){ ll a,b; cin >> a >> b; b = -b; cout << a - b << endl; return 0; }