Competitions
Week 2 Conditionals Part 2
Each condition of two
For the given integer n print YES, if takes place each of the following conditions and NO otherwise.
number n is divisible by 3;
number n is even and two-digital.
Input data
One integer n.
Output data
Print YES or NO depending on conditions.
Examples
Input example #1
12
Output example #1
YES
Input example #2
27
Output example #2
NO