2.1 (WHAT DOES THIS CODE DO?) Create the variables x = 2 and y = 3, then determine what each of the following statements displays:
a. print('x =',x)
b. print('Value of', x, '+', x, 'is', (x + x))
c. print('x =')
d. print((x + y), 'x =', (y + x))