Computer Science, asked by antrikshkasana7, 9 months ago

Write a program in Python to calculate sum of two numbers​

Answers

Answered by peas16
2
Are you studying in platinum jubilee high school?
Answered by vsvprabhath
17

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)

Similar questions