Write a program that creates the following variables and performs some arithmetic with them:
first_number with the value 10second_number with the value 5third_number with the value 3Then print the following (each on a separate line):
The sum is 18
The product is 50
The difference is 5
The division result is 2.0
Where:
first_number multiplied by second_numberfirst_number minus second_numberfirst_number divided by second_number