b1, b2, b3 = list(map(int, input().split())) x1 = b2 ** 2 + b3 * (b3 - b1 - b2) x2 = b2 - b1 x = int((x1 / x2 * 2 + 1) // 2) print( x)