Help for this page

Select Code to Download


  1. or download this
    use bigint;
    while(<>) {
    ...
        $a += 0;
        print $a - $b, "\n";
    }
    
  2. or download this
    use bigint;
    while(<>) {
        my ($a, $b)= map { 0+$_ } split/ /;
        print $a - $b, "\n";
    }