#include #include #include using namespace std; int main(){ cin.tie(0); ios::sync_with_stdio(false); vector vc(2); for(auto& x : vc){ cin >> x; } cout << accumulate(vc.begin(), vc.end(), 0) << endl; return 0; }