a=STDIN.gets.to_i b=STDIN.gets.to_i c=STDIN.gets.to_i n=a/b if a%b>0 then n+=1 end m=a/c if a%c>0 then m+=1 end n=(n*2.0/3.0).floor if n>=m then puts "YES" else puts "NO" end