write a program in Python that accepts two numbers and display the sum
Answers
Answered by
1
CODE :
a = int(input("First number: "))
b = int(input("Second number: "))
print(a + b)
MARK THIS AS BRAINLIEST ANSWER
Answered by
0
n1 = int(input("Enter 1st Number")
n2 = int(input("Enter 1st Number")
print ("Sum = ",n1+n2)
Similar questions