#include <iostream> using namespace std; int main(){ int k,x,y; cin>>k>>x>>y; int n=y/k-(x-1)/k; cout<<n; return 0; }