a = gets.to_i
b = gets.to_i
c = gets.to_i
ans1 = (a/c.to_f).ceil
ans2 = (a/b.to_f).ceil

if( ans1 <= (ans2*2/3)) then    
    puts "YES"
else
    puts "NO"
end