Computer Science, asked by sangeethmanojkumar12, 9 hours ago

Write a python program to find the sum of two numbers

Answers

Answered by prateekmishra68
3

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:

mark me as brainliest

Answered by nita62912
2

Answer:

Python program to add two number:

01. a= int( input ("enter first number".)

02. b= int( input (" enter second number.")

03. sum = a+b.

04. print ("sum:" , sum).

Explanation:

I hope help you ✌️

Similar questions
Math, 8 months ago