Help for this page

Select Code to Download


  1. or download this
    $operator = <STDIN>;
    chomp $operator;
    ...
    {
       die "unknown operator \"$operator\"\n";
    }
    
  2. or download this
    $first=<STDIN>;
    $second=<STDIN>;
    ...
    {
        print "$result\n";
    }