sort numbers by 51b

import std.stdio;void main(){int[]a;readln;for(int n;~scanf("%d",&n);)a~=n;foreach(n;a.sort)write(n," ");}

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page