#!/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";