The Program takes two numbers from user and provides the common arithmetic operation's output, which include Addition, Subtraction, Multiplication and Division between the two numbers
Execution command:
python "Task 1.py"Enter the two numbers that you need the Arithmetic Operations of
Output:
Enter the first number: 5
Enter the second number: 7
Addition: 12.0
Subtraction: -2.0
Multiplication: 35.0
Division: 0.7142857142857143
The Program accepts first name and last name from the user and greets the user
Execution command:
python "Task 2.py"Output:
Enter your first name: Vivek
Enter your last name: Tripathi
Hello, Vivek Tripathi! Welcome to the Python program.