CBSE BOARD XII, asked by poorvijain37, 3 months ago

write a program to calculate sum of two values in python

Answers

Answered by ItzGuriSidhu
9

Answer:

Python Program to Add Two Numbers

a = int(input("enter first number: "))

b = int(input("enter second number: "))

sum = a + b.

print("sum:", sum)

Answered by raazkumarrzkgmailcom
0

Answer:

Python Program to Add Two Numbers

1.a = int(input("enter first number: "))

2.b = int(input("enter second number: "))

3 sum = a + b.

4.print("sum:", sum)

Explanation:

i hope it's help you:)

Similar questions