using System;
public class Program
{
public static void Main()
//Fernanda Sánchez
int ts;
Console.WriteLine();
Console.WriteLine("tell me a number");
ts = int.Parse (Console.ReadLine());
for (int f = 1; f <= ts; f++)
Console.WriteLine(f + " " + "THE EXAM YOU ARE READING WAS ANSWERED BY FERNANDA");
}