#include <bits/stdc++.h> using namespace std; int main(){ int a; cin>>a; for(int x=1;x<=a;x++){ cout<<x*x<<endl; } return 0; }