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