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