#include using namespace std; int a, b; void input() { cin >> a >> b; } void solve() { cout << (a - (0 - b)) << endl; } int main() { ios::sync_with_stdio(false); cin.tie(0); input(); solve(); }