What would the following code do?
a = b = 70
The above code performs multiple assignment, where the value 70 is assigned to both variables a and b simultaneously.
a
b