#!/usr/bin/perl

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