in reply to how to add space between printing strings

print "$first_name $last_name\n"; Perl interpolates the $var names within double quotes in a print.
BTW, a valid var name can not start with a digit. (1st_name is not right).