4 lines
89 B
Perl
4 lines
89 B
Perl
print "Enter a string: ";
|
|
my $string = <>;
|
|
print "Enter an integer: ";
|
|
my $integer = <>;
|