Computer Science, asked by sanjivkumar59234, 3 months ago

write a program in python to take two number as imput and find the sum of the two and print the result​

Answers

Answered by Anonymous
1

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)

Explanation:

Similar questions