Computer Science, asked by ajvismay2003, 5 months ago

Write a python program to find the sum of two numbers​

Answers

Answered by Anonymous
21

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 anshul230
3

Answer:

here go

a=2

b=3

pribt(a+b)

Similar questions