Help for this page

Select Code to Download


  1. or download this
    #! usr/bin/perl -w
    use strict;
    ...
    my $y=<STDIN>;
    chomp($y);
    print "two values are $x,$y\n";
    
  2. or download this
    enter two values
    10
    20
    two values are 10,20