using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Roop
{
internal class Program
{
static void Main(string[] args)
{
for (var i = 1; i <= 5; i++)
{
Console.WriteLine("Hello World!");
}
}
}
}