#include using namespace std; int a, b, c; void input() { cin >> a >> b >> c; } void solve() { cout << (((a + b - 1) / b) * 2 == ((a + c - 1) / c) * 3 ? "YES" : "NO") << endl; } int main() { ios::sync_with_stdio(false); cin.tie(0); input(); solve(); }