# Below follow the math operators that can be used in python
# ** Exponent
2 ** 3 # Output: 8
# % Modulus/Remaider
22 % 8 # Output: 6
# // Integer division
22 // 8 # Output: 2
# / Division
22 / 8 # Output: 2.75
# * Multiplication
3 * 3 # Output: 9
# - Subtraction
5 - 2 # Output: 3
# + Addition
2 + 2 # Output: 4
a_number = 3
the_complete_number = a_number + a_number #result should be 6
the_the_complete_number = a_number * a_numner #result should be 9
the_the_the_complete_number = a_number - a_number #result should be 0
number = 2
number += 2
# returns 4