{
 "metadata": {
  "kernelspec": {
   "name": "python",
   "display_name": "Python (Pyodide)",
   "language": "python"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "python",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.8"
  }
 },
 "nbformat_minor": 5,
 "nbformat": 4,
 "cells": [
  {
   "id": "5055aae4-a8ea-4158-9692-2ac0de3d3d12",
   "cell_type": "code",
   "source": [
    "a = 20\nb = 7"
   ],
   "metadata": {
    "trusted": true
   },
   "outputs": [],
   "execution_count": 7
  },
  {
   "id": "56b81720-6454-4d62-ae77-f0807d73a4ef",
   "cell_type": "code",
   "source": [
    "print(a*b)\nprint(a+b)\nprint(a-b)\nprint(a/b)"
   ],
   "metadata": {
    "trusted": true
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": "140\n27\n13\n2.857142857142857\n"
    }
   ],
   "execution_count": 8
  },
  {
   "id": "8263ea54-ef76-46dd-9a16-4750dc6d66d6",
   "cell_type": "code",
   "source": [
    "#integer division"
   ],
   "metadata": {
    "trusted": true
   },
   "outputs": [],
   "execution_count": 9
  },
  {
   "id": "c1f39dfc-bd88-4a95-b40b-2a37f7b3fc4d",
   "cell_type": "code",
   "source": [
    "print(a//b)"
   ],
   "metadata": {
    "trusted": true
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": "2\n"
    }
   ],
   "execution_count": 11
  },
  {
   "id": "bc5946ff-e52c-46a2-802f-f8bfc5a6ae2b",
   "cell_type": "code",
   "source": [
    "#division with remainder"
   ],
   "metadata": {
    "trusted": true
   },
   "outputs": [],
   "execution_count": null
  },
  {
   "id": "4a58116b-1f40-4b36-8368-0de629c88b3c",
   "cell_type": "code",
   "source": [
    "print(a//b, a%b)"
   ],
   "metadata": {
    "trusted": true
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": "2 6\n"
    }
   ],
   "execution_count": 12
  },
  {
   "id": "2a9531a5-63a3-4024-832b-abaecd3a9d90",
   "cell_type": "code",
   "source": [
    ""
   ],
   "metadata": {
    "trusted": true
   },
   "outputs": [],
   "execution_count": null
  }
 ]
}