This lesson shows how arithmetic operators work in R. We start with two numbers, a and b. We assign values 10 and 3 to them. Then we add them using +, multiply using *, and raise a to the power of b using ^. Each step assigns the result to a new variable. The variables keep their values after assignment. The execution table shows each step's expression, evaluation, and result. The variable tracker shows how values change after each step. This helps beginners see exactly how R calculates and stores results with arithmetic operators.