Sample statement
The following is an example of a statement comprised of expressions.
z = x + y;
In the above statement, values are retrieved from the variables named x and y.
These two values are added together.
The result is stored in (assigned to) the variable named z, replacing whatever value may previously have been contained in that variable.