#!/usr/local/bin/perl

for ($count = 1; $count <= 20; $count++) {
        next if ($count % 2 == 1);
        print ("$count\n");
}
