>>> a=b=c=10    # assign 10 to several variables
>>> a+b+c          # add them together
30
>>> a=b=c=20   # assign 20 to same variables
>>> a+b+c         # add them together
60
>>>

Figure 4