• + 0 comments

    python 3

    n=int(input())

    square =[x**2 for x in range(n)]

    for x in square:

    print(x)