Computer Science, asked by cakash9743, 22 days ago

Rewrite the following statements after correcting them:
a. a=10, b=20
Sum=a+b
Print(Sum of the number is +sum)

Answers

Answered by Kalihacker
2

Answer:

a,b=10,20

sum=a+b

print("The sum is ",sum)

Similar questions