A = int(input()) B = int(input()) C = int(input()) x = -(-A//B) y = x//3*2 print(x, y) if C*y >= A: print("YES") else: print("NO")