puts "Addition - Adds values on either side of the operator"
puts "Subtraction - Subtracts right hand operand from the left hand operand"
puts "Multiplication - Multiplies values on either side of the operator"
puts "Division - Divides left hand operand by right hand operand"
puts "Modulus - Divides left hand operand by right hand operand and returns the remainder"
puts "Exponent - Performs exponential (power) calculation on operators"
puts "< <= > >= Comparison Operators"
puts "The assignment operator = assigns the result of an operation to a variable"