import math a = int(input()) b = int(input()) c = int(input()) n = math.ceil(a / b) #本来の必要アイテム個数 m = math.ceil(a / c) #キャンペーン時の必要アイテム個数 #仮説はキャンペーン時なら通常時の2/3以下の個数でたりるのではないか if m / n <= 2/3: print('YES') elif m / n > 2/3: print('NO')