a = input() b = input() c = input() A = (a + b - 1) / b B = (a + c - 1) / c if (B <= A * 2 / 3.0): print "YES" else: print "NO"