import type.lang.*;

public class Example12
{
	public static void main(String[] args)
	{
		// output the squares of the numbers 1 through 10
		for (int i = 1; i <= 10; ++i)
		{
			int square = i * i;
			IO.print(square);
			IO.print(" ");
		}
	}
}
