Practicing with math operators

4.5 / 6.29 = 0.715 --> the divide operator divides 2 numbers or variables.
4.5 + 9 = 13.5 --> the addition operator adds 2 numbers or variables.
6.29 * 6 - 4.5 = 33.240 --> the the multiplication operator multiplies 2 numbers or variables. all math operations can be done in tandem
9 % 6 = 3 --> the modulos operator divides 2 numbers as integers which can only be displayed as whole numbers. this means that the quotient is rounded up if it's greater than 5, and down if it's less.
9 incremented by 1 = 10 --> incrementing increases a number or variable by one. decrementing also exists.