#!/usr/bin/perl ###################################################################### # continuously read from STDIN, store in an array, sort the array ###################################################################### while() { push(@array,$_); } print sort (@array);