// No.98 円を描こう // https://yukicoder.me/problems/no/98 // #include #include using namespace std; int solve(int xp, int yp); int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); int xp, yp; cin >> xp >> yp; int ans = solve(xp, yp); cout << ans << endl; } int solve(int xp, int yp) { double r = sqrt(xp*xp + yp*yp); double d = r * 2; int ans = ceil(d); if (pow((ans/2), 2) == pow(xp, 2) + pow(yp, 2)) ++ans; return ans; }