using System;
public class Program
{
public static void Main()
//Your code goes here
Console.WriteLine("Bitte geben Sie eine Zahl zwischen 1 und 50");
int Zahl = Convert.ToInt32(Console.ReadLine());
if (Zahl<=50 && Zahl>= 1);
for (int i =1; i<=Zahl; i++)
if(i>1)
Console.WriteLine(i-1 +" "+ i);
}
}}}