Language Basics Perl

$savings = 0; 
while ($savings < 1_000_000) {
    print "Enter the amount: ";
    $savings += <>;
}