Problems
500 - Print “Hello”
SUBMIT PROBLEM

Print “Hello”

Time Limit: 1 sec

 

The Problem

Sam is playing a game with her friend.

Game rule is:

A number N will be given and Sam has to written “hello” N times.

 

The Input

The input file contains several lines. Each line contains a single integer number, N (N<=25). Input is terminated by EOF.

 

The Output

For each line of input print “hello” N times with it's line number in a separate line.

 

Sample Input

3

7

 

 

Sample Output

Line 1: hello

Line 2: hello

Line 3: hello

Line 1: hello

Line 2: hello

Line 3: hello

Line 4: hello

Line 5: hello

Line 6: hello

Line 7: hello

 

 

 

 

Problem Setter: Samia Safa Ahmed