# Task 1

  # Add comments to explain what the output from this program will be and how you know.

def maths1():
  num1 = 50
  num2 = 5
  return num1 + num2

def maths2():
  num1 = 50
  num2 = 5
  return num1 - num2

def maths3():
  num1 = 50
  num2 = 5
  return num1 * num2

outputNum = maths2()
print(outputNum)

# Task 2

  # Adapt the code from one of the functions abover to create a new function called 'multiplier'.
  # The user should be able to input two numbers that are stored in variables. 
  # The function should multiply the two variables together and return the result to a variable in the main program.
  # The main program should ouput the variable containing the result returned from the function.