using System;
namespace App
{
class MainClass
{
public static void Main(string[] args)
{
Console.Write("Введите n: ");
int n = Convert.ToInt32(Console.ReadLine());
int number = 1;
while((int)Math.Pow(number,2) < n)
{
Console.Write($"{Math.Pow(number, 2)}\t");
number++;
}
}
}
}