X and X*X

 X and X*X


a=int(input())
di={}
for i in range(1,a+1):
  di[i]=i*i
print(di)

Comments