void SORT(int *a,int b) { int i,j; for(i=0;a[i]<b&&i<N-1;++i) ; for(j=N-1;j>i;--j) { a[j]=a[j-1]; } a[i]=b; }