public static void Main()
Console.WriteLine("Take a look to the following series.");
for(int i = 1; i <= 5; i++)
Console.WriteLine("What position of the series do you want to know?");
num = int.Parse(Console.ReadLine());
for(int i = 1; i <= num; i++)
Console.WriteLine( a + " is the number on the series that corresponds to the position you asked.");