Computer Science, asked by rinisen, 6 months ago

Write the following code in the Python editor and check the output on its execution:

a=10
b=15
print ("The addition of a and b is:")
print (a+b)

Answers

Answered by bikash79
1

Answer:

The addition of a and b is:

15

I recently started to learn python. I love coding.

Answered by suryarangasamy7023
1

Answer:

input=print(a)

print (",a)

input=print (b)

print("Enter the next number:",b)

print("The addition of a and b is:")

print(a+b)

Output:-

Enter the number:2

Enter the next number:3

The addition of a and b is:5

Similar questions