#!/usr/bin/perl -w

use strict;
my $i;

$/="//";
$i =0;

while (<STDIN>){
    if ($i==1){
	chomp;
        print;
    }
    $i = $i + 1;
}
