using System;
public class Program
{
static void Main(string[] args)
const int maxvalue = 10;
int square = 1;
int counter;
for ( counter = 1; counter <= maxvalue ; counter++)
square = counter^2;
Console.WriteLine(square);
Console.ReadLine();
}