#include<iostream.h> void main() { int outCounter=0,a,i=1; for(i=1;i<32;i++) { a=i*i; cout<<a<<' '; if(!(++outCounter%6)) cout<<' '; } cout<<' ';// }