#!/usr/bin/perluse warnings;use strict;my $start = 2;my $end = 4;while (<>) { ($. == $start)..($. == $end) and print "$.: $_";}