#!/usr/bin/perl -wuse strict;my %where = ( G => "Dallas", L => "Exeter", I => "Reading", S => "Oregon");foreach (keys %where) { print "$_ lives in $where{$_}\n";}