#!/usr/bin/perl
while (<>) {
    chop;
    if ($_ ne "") {
	print $_,"\n";
    }
}
