#include <stdio.h> void main() { int i,j; for(i=1;i<=4;i++) { for(j=1;j<=4;j++) printf("%d\t",j>5-i?j+i-5:i-1+j); printf("\n"); } }