import math A,B,C = map(int,input().split()) ans = math.ceil((A*C)/(A+B-1)) print(ans)