#!usr/bin/env perl -w use strict; my $z=$ARGV[0]; my $t=$ARGV[1]; if ($z > $t) { print $z; } else {print $t; }