Give the output.
a, b = 12, 13 c, b = a * 2, a/2 print(a, b, c)
12 6.0 24
a, b = 12, 13
c, b = a*2, a/2
print (a, b, c)