/*
using System;
namespace ConsoleApp6
{
class Program
{
static void Main(string[] args)
{
int x = Convert.ToInt32(Console.ReadLine());
string a = Console.ReadLine();
string[] b = a.Split(' ');
int[] p = new int[b.Length];
for(int i = 0; i<x; i++)
{
p[i] = Convert.ToInt32(b[i]);
}
for(int i=0; i<x; i++)
{
for(int j=0; j<x; j++)
{
Console.Write(p[(i+j)%x] + " ");
}
Console.WriteLine();
}
}
}
}
*/
/*
using System;
namespace ConsoleApp
{
class Program
{
static void Main(string [] args)
{
int x = Convert.ToInt32(Console.ReadLine());
string a = Console.ReadLine();
string[] b = a.Split(' ');
int[] p = new int[b.Length];
for (int i = 0; i < x; i++)
{
p[i] = Convert.ToInt32(b[i]);
}
for (int i = 0; i <= x; i++)
{
Console.Write((i+1) + ": ");
for (int j = 0; j < x; j++)
{
if (i == j) { }
else if (p[i] < p[j])
{
Console.Write("< ");
}
else if (p[i] == p[j])
{
Console.Write("= ");
}
else
{
Console.Write("> ");
}
}
Console.WriteLine();
}
}
}
}
*/
// 1430 //



