import math a = int(input()) b = int(input()) c = int(input()) x = math.ceil(a / b) y = math.ceil(a / c) print(['NO', 'YES'][2*x >= 3*y])