A. Print Recursion
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Given a number $$$N$$$. Print "I love Recursion" $$$N$$$ times.

Note: Solve this problem using recursion.

Input

Only one line containing a number $$$N$$$ $$$( 1 \le N \le 100 )$$$ .

Output

Print "I love Recursion" $$$N$$$ times.

Example
Input
3
Output
I love Recursion
I love Recursion
I love Recursion