Computer Science, asked by ChaitanyaBhoite, 11 months ago

Can you tell me how to
print(a+b) with statement in python

Answers

Answered by yeshwanthg02
1

example:

a=10

b=12

print(a+b)

output:

22

Answered by kennethpinto
0

Answer:

a = 15

b = 20

print(a+b)

Output:

35

Similar questions