n,x,y = map(int,input().split()) print(int((n-y/x)//1))
------Input------ 5 1 12 ------Answer----- 0 ------Your output----- -7