int i,j,N; scanf("%d",&N);for(j=1;j<=10-N;j++) { for(i=N;i<=9;i++) printf("%d",i); printf("/n"); }return 0;