#include <iostream> using namespace std; int min(int x, int y) { return y +
} int main() { int x,y; cin >> x>>y; cout << min(x,y); return 0; }