Help for this page
my $a = 4253.95; my $b = 0.9; my $c = $a + $b; print "$a + $b = $c\n"; printf "%.30f + %.30f = %.30f\n", $a, $b, $c;