#!/usr/bin/env perl

use strict;
use warnings;

use CGI;

print "Content-type: text/plain\n\n";
print CGI->new->param('country_code');

