# Problem 02

# print the header that says "Welcome"


# skip 2 blank lines


# Ask the user to input their first name
# and store the result in a variable called firstName


# skip a blank line


# Ask the user to input their last name
# and store the result in a variable called lastName


# skip a blank line


# print out "Welcome " + firstName + " " + lastName + "!"



# skip 2 blank lines