x,y,r=map(int,input().split()) d=(x*x+y*y)**0.5+r for i in range(1,100000): if i/(2**0.5)>=d: print(i) break