#define _USE_MATH_DEFINES #include #define FOR(i,a,b) for(int i = (a); i < (b); ++i) #define REP(i,n) FOR(i,0,n) #define SZ(n) (int)(n).size() #define ALL(n) (n).begin(), (n).end() #define MOD 1000000007 using namespace std; typedef long long LL; typedef vector VI; int main() { int x, y, r; cin >> x >> y >> r; if (x < 0) x *= -1; if (y < 0) y *= -1; int ans = ceil(x + y + sqrt(2) * r); cout << ans << endl; return 0; }