a,b,c = [int(input()) for _ in range(3)] x = a//b+(a%b!=0) y = a//c+(a%c!=0) print("YES" if x*(2/3)>=y else "NO")