This program takes the input of your first, middle, and last name and produces a large string of text, which contains the variables first_name, middle_name, and last_name. Complete the print statement.
Your full name is:
1. full_name
2. first_name + middle_name + last_name
3. first_name + ” ” + middle_name + ” ” + last_name
4. “Your full name is:” + full_name