import math A,B,C = map(int,input().split()) if 60 * A < B: print(-1) else: answer = (3600 * C) / (60 * A - B) print(math.ceil(answer))