#include using namespace std; typedef long long ll; int main() { int Xp, Yp; cin >> Xp >> Yp; // if (Xp < 0) Xp *= -1; // if (Yp < 0) Yp *= -1; double r = sqrt(Xp * Xp + Yp * Yp); cout << floor(2 * r) + 1 << endl; }