i am prompting for input on the screen for two args, instead of prompting for input how can i take the 2 args from the command line itself means (./name arg1 arg2) like this!!
use strict;
use warnings;
print "gate1 name \n";
my $gate1 = '';
chomp($gate1 = <STDIN>);
print "gate2 name \n";
chomp($gate2 = <STDIN>);