wap to add two numbers entered by the user in python
Answers
Answered by
2
Answer:
hi...
Explanation:
a=int(input(" enter the first number"))
b=int(input("enter the second number'"))
sum=a+b
print(sum)
hope it helps you ☺️
Answered by
1
numOne, numTwo = input("Enter first number - "), input("Enter second number - ")
print("Sum -", int(numOne) + int(numTwo))
Similar questions
Social Sciences,
3 months ago
Physics,
3 months ago
Social Sciences,
6 months ago
English,
10 months ago