Even or Odd


Submit solution

Points: 5
Time limit: 1.0s
Memory limit: 256M

Author:
Problem type

Given an integer \(n\), determine whether it is even or odd.

Input

One line containing an integer \(n\) (\(|n| \le 10^{18}\)).

Output

Print CHAN if \(n\) is even; otherwise, print LE.

Example

Input
7
Output
LE

Comments

There are no comments at the moment.