• + 0 comments

    n = int(input())

    for i in range(0, n): print(i ** 2)

    [print(x ** 2) for x in range(0, n)]