Computer Science, asked by mosesdinesh71, 5 months ago

What will be the output produced by the following code fragments
a,b = 12 , 13
c, d = a*2,a/2
print ( a, b, c )

Answers

Answered by Aaringupta118
0

Answer:

it sow text error

Explanation:

because your code is wrong

Answered by sarfaras1
0

Answer:

12 13 24

Explanation:

a and b are given in the question i.e, 12 and 13. c=a*2 so c=24

So the out put will be like that only

Similar questions