Adds values
Subtracts second value from first value
Multiplies values
Divides first value by second value
Calculates remainder -> Divides first value by second and returns remainder
Calculates first value to the power of second value
Divides first value by second value and returns integer value
x = 10
y = 12
print(x + y)
x = 10
y = 12
print(x - y)
x = 10
y = 12
print(x * y)
x = 50
y = 12
print(x / y)
# 50/12= 4.166666666666667 50//12= 4 -> // removes the digits after the decimal point
x = 50
y = 12
print(x // y)
# 50 = 4*12 + 2 (remainder)
x = 50
y = 12
# Prints remainder
print(x % y)
# 2 to the power of 3
x = 2
y = 3
print(x ** y)