##
city=New+York&date=20010912&max_temp=79
####
#! /usr/bin/perl -w
use strict;
use CGI qw(:standard);
my $city = param('city');
my $date = param('date');
my $max_temp = param('max_temp');
print header( -type=>'text/plain' ),
"The hottest it got in $city on $date was $max_temp F.";