# Note - the goal is for you to look at each line of code # make a prediction for what will happen, then run the code to # see what actually happens. 1 + 2 1 + 2 * 3 # order of operations (1 + 2) * 3 1 / 2 # floating point division 1 %/% 2 # integer division 2 ^ 3 # exponentiation 2 ** 3 #