#!/usr/bin/perl

use strict;
use warnings;

my $exp = 1;
for my $i (1 .. 20)
{
    $exp *= 2;
}