public static void Main()
Console.WriteLine("Hi! What is your name?");
name = Console.ReadLine();
Console.WriteLine("Nice to meet you, " + name + "!");
Console.WriteLine("Write a number between 1 and 6");
x = int.Parse(Console.ReadLine());
Console.WriteLine("The number is out of range. Start again. ");
if (x == 1 | x == 3 | x == 5)
for (int i = 1; i <= 5; i++)
if (x == 2 | x == 4 | x == 6)
for (int i = 1; i <= 10; i++)