Task 1: Perform Basic Mathematical Operations Problem Statement: Write a Python program that does the following:
- Takes two numbers as input from the user.
- Performs the basic mathematical operations on these two numbers: o Addition o Subtraction o Multiplication o Division
- Displays the results of each operation on the screen.
Task 2: Create a Personalized Greeting Problem Statement: Write a Python program that:
- Takes a user's first name and last name as input.
- Concatenates the first name and last name into a full name.
- Prints a personalized greeting message using the full name.