For instance, from (1, 1, 2) he can move to (2, 0, 1), from there to (1, 1, 0), and from there to (0, 0, 1). By contrast, it is not difficult to see that from (1, 1, 3) he cannot reach any of (1, 0, 0), (0, 1, 0) or (0, 0, 1).
Input
Input consists of several cases, each one with three integers R, B and Y, all of them between 0 and 109. Assume R + B + Y > 0.
Output
For every case, print “YES” if Edgar can achieve a situation where R′ + B′ + Y′ = 1, and print “NO” otherwise. Obviously, none of the three variables can go below zero at any moment.
Input
1 1 2 1 1 3 0 1 0 7 4 2
Output
YES NO YES YES