X, Y, R = map(int, input().split()) a = ((((X+Y)/2)**2)*2)**0.5+R for i in range(1, 300): if ((i/2)**2*2)**0.5 > a: print(i) break