using System;
public class Program
{
public static void Main()
int n = 10;
int i = 1;
for(; i<=n ; i = i+2){
Console.WriteLine(i + "\t" + (i*i));
}