#include "stdio.h" main() { int i,j,y; for(i=0;i<=3;i++) for(j=0;j<=i;j++); { y=2*j+1; printf("%d",y); } printf("\n"); }