a, b, c = map(int, input().split()) if b >= c: if c % a == 0: print(c // a) if (b + c) % a == 0: print((b + c) // a)