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
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
Math,
1 month ago
Math,
1 month ago
English,
1 month ago
Social Sciences,
3 months ago
India Languages,
3 months ago
Math,
9 months ago
Science,
9 months ago
Physics,
9 months ago