Find the number of k-divisible numbers on the segment [a,b]. In other words you need to find the number of such integer values x that a \le x \le b and x is divisible by k.
The only line contains three space-separated integers k, a and b (1 \le k \le 1018;-1018 \le a \le b \le 1018).
Print the required number.