#include<bits/stdc++.h> using namespace std; long int n,k,lun; int main() { cin>>n>>k; lun=n/k; if(lun&1) cout<<"YES"; else cout<<"NO"; return 0; }