#include <iostream> using namespace std; int main(){ int j; for(j=0; j<15; j++) cout << j * j << " "; cout << endl; return 0; }