7. Predict the output

a)
a, b = 12, 13
c, b = a*2, a/2
print(a, b, c)

# output
12 6.0 24
b)
a, b = 12, 13
print(print(a+b))

# output
None