A, B, C = map(int, input().split()) if A * 60 <= B: print(-1) else: print((C * 60 * 60 - 1) // (A * 60 - B) + 1)