a,b,c = map(int,input().split(' ')) r = (c - b) / (b - a) d = c - r * b print(int(r * c + d + 1e-9))