Help for this page

Select Code to Download


  1. or download this
    my @a=<STDIN>;
    print @a;
    
  2. or download this
    my @a=<STDIN>;
    print "\n @a";
    
  3. or download this
    my @a=<STDIN>;
    chomp(@a);
    print @a;