#include <iostream>
using namespace std;
int k,p,t;
int main()
{
while (cin >> k >> p)
{
t=k/(p-1);
if (t%2==1)
cout << "YES";
else cout << "NO";
cout << endl;
}
return 0;
}
可以数学推理,或找规律。