how to take input from keyboard and print to screen

By pravin2006

#!/usr/bin/perl

$input = <STDIN>; // this will take input from keyboard

print $input ; // this will output to the screen

Leave a Reply