Kaka found a magical repeater.
If you input the integer $1$, it will output 'I love Heilongjiang'. If you input the integer $0$, it will output 'I love CCPC'. If any other integer is input, it will output 'Error'.
Given an integer $x$, please output the response of this repeater.
Input
A single line containing an integer $x$ ($-10^9 \le x \le 10^9$).
Output
If $x = 1$, output 'I love Heilongjiang'. If $x = 0$, output 'I love CCPC'. Otherwise, output 'Error'.
Examples
Input 1
1
Output 1
I love Heilongjiang
Input 2
0
Output 2
I love CCPC
Input 3
-1
Output 3
Error