Help for this page
my $max_number; #initialize a variable that keeps the maximum n +umber
if(!defined($max_number) or $current_number > $max_number) + { $max_number = $current_number; #compare each time t +he number we have in the line with the max number }