from math import ceil a,b,c=[int(input()) for _ in range(3)] print("YES" if ceil(a/c) <= ceil(a/b)*2/3 else "NO")