n,x,y=input().split() n,x,y=int(n),int(x),int(y) i=n-y//x print(i)
------Input------ 459 2 1 ------Answer----- 458 ------Your output----- 459