# -*- coding: utf-8 -*- import math a = float(input()) b = float(input()) c = float(input()) nom = math.ceil(a / b) hot = math.ceil(a / c) if nom >= 1.5 * hot: print "YES" else: print "NO"