A = int(input()) B = int(input()) C = int(input()) if (A <= B): print(-1) else: print((C+A-B+1)//(A-B))