#include #include using namespace std; int main(){ int r,xp,yp; cin >> xp >> yp; r = sqrt(xp * xp + yp * yp) * 2; cout << int(r) + 1 << endl; }