Number Classification

0

0 votes
Problem

Juan de la Cruz likes to classify integers. If you remember, a prime integer is an integer number greater than one which is divisible by itself and one. A composite integer is an integer greater than one that is not prime. An even integer is divisible by the number 2. An odd integer is not divisible by the 2.

You are given a number, your task is to create a program to classify integers as PRIME, COMPOSITE, ODD or EVEN.


Input Format:
The input contains a single integer N indicating the input number to classify.


Output Format:
For each input number, display UGLY if the number is prime and CUTE if the number is composite. Also, display EVEN if the number is even and ODD if otherwise.


Constraints:
N ≤ 10 000

Time Limit: 1
Memory Limit: 256
Source Limit:
Editor Image

?