Program for Robot
Student Vasya is an enthusiast in robotics and has recently built a new robot with the charming name "Nyusya - Smarty - 2011." When in a good mood, the robot responds to the nickname Nyusya. Vasya is developing various intelligent programs for Nyusya to execute. Recently, Vasya decided to teach Nyusya how to perform a daisy petal fortune-telling. The process is quite simple:
1. The daisy has N petals. 2. Nyusya plucks the first petal, which means "loves." 3. Nyusya plucks the second petal, which means "not loves." 4. Nyusya plucks the third petal, which means "loves." 5. This pattern continues until all petals are plucked. The meaning of the last petal determines the answer.
Your task is to write a program for Nyusya, as Vasya is busy with exams and doesn't have time to do it.
Input
The input consists of a single integer N, representing the number of petals on the daisy (N ≤ 10^9).
Output
Output either "Love" or "Not love" based on the last petal's meaning.