#!/usr/bin/ruby a,b,c=$<.map(&:to_i) n=(a+b-1)/b if n%3==0 && n*2/3*c>=a puts :YES else puts :NO end