Help for this page
if ($total eq "3") { $revenue = 30; ... } elsif ($total eq "10") { $revenue = 50; }
if ($total eq "3") { $revenue += 30; ... if ($total eq "10") { $revenue += 50; }