#!/usr/bin/perl


while (<>){
    chomp;
    print "$_\n";
}
exit;
