a = int(input()) b = int(input()) c = int(input()) m = (a-1)//b + 1 n = (a-1)//c + 1 if 2/3 * m >= n: print("YES") else: print("NO")