Complete execution flow of the following program
>>> a, b = ['a', 1], ['b', 2] >>> c = a[0] + b[0] >>> c 'ab' >>>