#!/usr/bin/perl -w

use warnings; 

print "Type in a number and press ENTER\n";
$userInput = <STDIN>;

chomp($userInput);

print "you entered $userInput!\n";
exit;

