#include void main(){ int a[4][5],i,j; for(i=1;i<4;++i) { for(j=1;j<5;++j) { a[i][j]=i*i+j; printf("%4d",a[i][j]); } printf("\n"); }}