#!/bin/perl

print "Hey, give me a value: ";
$input = <STDIN>;
chomp($input);

print "$input\n";

exit;
