Problem L is the Only Lovely Problem
题号:NC209649
时间限制:C/C++/Rust/Pascal 1秒,其他语言2秒
空间限制:C/C++/Rust/Pascal 256 M,其他语言512 M
64bit IO Format: %lld

题目描述

Dreamoon loves lovely things, like lovely girls, lovely bed sheets, lovely clothes...
So he thinks a string is lovely if and only if it begins with the word "lovely"(case insensitive). You are given a string. Please tell us whether Dreamoon thinks that string is lovely. 

输入描述:

The input contains only one line.

This line contains a string $s$. The length of $s$ is between $8$ and $10$.

$s$ consists of only the English alphabet. It can be lower case or upper case.

输出描述:

If a string is lovely, please output "lovely", Otherwise, output "ugly". (The output is case sensitive).
示例1

输入

复制
LovelyAA

输出

复制
lovely
示例2

输入

复制
lovelymoon

输出

复制
lovely
示例3

输入

复制
NOWCOWDER

输出

复制
ugly
示例4

输入

复制
LoveLive

输出

复制
ugly