I am to write a python code to the following:
Ask the user to enter the first name and store it in the first_name variable. Ask the user to enter the second name and store it in the last_name variable. Print the full name.
I have tried it repeatedly but it kept on giving errors.
first_name = input("Enter your first name: Ade ")
last_name = input("Enter your last name:Olu ")
full_name = first_name + last_name
print(full_name)
And the expected outcome is:
Ade Olu