#!/usr/bin/env python3 #fileencoding: utf-8 from math import ceil a = int(input()) b = int(input()) c = int(input()) count_b = ceil(a / b) count_c = ceil(a / c) if count_b*2 < count_c*3: print("NO") else: print("YES")