#!/usr/bin/perl use warnings; use strict; $a=0; chomp($a=); print $a, "\n"; #### #!/usr/bin/perl use warnings; use strict; $x=0; $y=0; print "enter first number "; chomp($x=); print "enter second number "; chomp($y=); print "Product ",$x*$y, "\n";