A = int(input()) B = int(input()) C = int(input()) BN, CN = (A + B - 1) // B, (A + C - 1) // C if BN* 2 >= CN * 3: print("YES") else: print("NO")