{
  "nbformat": 4,
  "nbformat_minor": 0,
  "metadata": {
    "colab": {
      "provenance": [],
      "generative_ai_disabled": true
    },
    "kernelspec": {
      "name": "python3",
      "display_name": "Python 3"
    },
    "language_info": {
      "name": "python"
    }
  },
  "cells": [
    {
      "cell_type": "code",
      "execution_count": null,
      "metadata": {
        "id": "sJbdVu90oaZv"
      },
      "outputs": [],
      "source": [
        "# Task 1\n",
        "\n",
        "  # Add comments to explain what the output from this program will be and how you know.\n",
        "\n",
        "def math1():\n",
        "  num1 = 50\n",
        "  num2 = 5\n",
        "  return num1 + num2\n",
        "\n",
        "def math2():\n",
        "  num1 = 50\n",
        "  num2 = 5\n",
        "  return num1 - num2\n",
        "\n",
        "def math3():\n",
        "  num1 = 50\n",
        "  num2 = 5\n",
        "  return num1 * num2\n",
        "\n",
        "outputNum = math2()\n",
        "print(outputNum)\n"
      ]
    },
    {
      "cell_type": "code",
      "source": [
        "# Task 2\n",
        "\n",
        "  # Adapt the code from one of the functions abover to create a new function called 'multiplier'.\n",
        "  # The user should be able to input two numbers that are stored in variables.\n",
        "  # The function should multiply the two variables together and return the result to a variable in the main program.\n",
        "  # The main program should ouput the variable containing the result returned from the function.\n"
      ],
      "metadata": {
        "id": "zEHmbxD3otYs"
      },
      "execution_count": null,
      "outputs": []
    }
  ]
}