Help for this page

Select Code to Download


  1. or download this
    my $mask_input = <INPUT>;
    
    ...
    ...
        
    print OUT "$mask_input";
    
  2. or download this
    chomp( my $mask_input = <INPUT> );
    my $new_mask = 'N' x length $mask_input;
    ...
        
    print OUT "$new_mask\n";