#include #include #include using namespace std; int main() { cin.tie(0); ios::sync_with_stdio(false); vector v(2); cin >> v[0] >> v[1]; cout << accumulate(v.begin(), v.end(), 0) << endl; return 0; }