Write a program that creates the following variables and performs some arithmetic with them:

  1. Create a variable first_number with the value 10
  2. Create a variable second_number with the value 5
  3. Create a variable third_number with the value 3

Then 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: