#define _USE_MATH_DEFINES #include //cin, cout #include //vector #include //sort,min,max,count #include //string,getline, to_string #include //abs(int) #include //swap, pair #include //deque #include //INT_MAX #include //bitset #include //sqrt, ceil. M_PI, pow, sin #include //fixed #include //setprecision #include //stringstream #include //gcd, assumlate #include //randam_device #include //numeric_limits using namespace std; constexpr long long int D_MOD = 1000000007; int main() { int x, y, r; cin >> x >> y >> r; double b = 2 * r / sqrt(2); int c = ceil(b); int ans; if (x == 0 && y == 0) { ans = c; } else if (x > 0 && y > 0) { ans = abs(x + y + c); } else if (x > 0 && y < 0) { ans = abs(x - y - c); } else if (x < 0 && y < 0) { ans = abs(x + y - c); } else { ans = abs(y - x + c); } cout << ans << endl; return 0; }