# 백준 #24309 (РАВЕНСТВО) # a·x = b-c a = int(input()) b = int(input()) c = int(input()) # print(a,b,c) x = (b - c) // a print(x)