# -*- coding: utf-8 -*- import math a = int(input()) b = int(input()) c = int(input()) n = math.ceil(a / b) m = n * 2 // 3 if c * m >= a: print('YES') else: print('NO')