x,y,r=STDIN.gets.split(" ") x=x.to_f y=y.to_f r=r.to_f if x<0 then x=-x end if y<0 then y=-y end ans=x+y++2*r/(2**0.5) puts ans.ceil.to_i