https://www.acmicpc.net/problem/2869
a,b,v=map(int,input().split()) k=int((v-b)/(a-b)) m=(v-b)%(a-b) if m==0: print(k) else: print(k+1)