## Basic Operators

Learn to use the basic mathematical operators, +, -, *, /, // and **

## PEMDAS
Parentheses, Exponents, Multiplication/Division, Addition/Subtraction

### PAUSE 1. What is the output of this code? 
`print(3 * 3 + 3 / 3 - 3)`

### PAUSE 2. Change the code so it outputs 3?
`print(3 * 3 + 3 / 3 - 3)`