a, b, c = gets.split.map(&:to_i) if b >= a * 60 puts -1 else t = a * 60 - b puts (c * 3600 + t - 1) / t end