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
2
Answer:
a,b=10,20
sum=a+b
print("The sum is ",sum)
Similar questions