Computer Science, asked by hepduh, 3 months ago

write a program in Python that accepts two numbers and display the sum​

Answers

Answered by ABHIRAMA18092007
1

CODE :

a = int(input("First number: "))

b = int(input("Second number: "))

print(a + b)

MARK THIS AS BRAINLIEST ANSWER

Answered by atrs7391
0

n1 = int(input("Enter 1st Number")

n2 = int(input("Enter 1st Number")

print ("Sum = ",n1+n2)

Similar questions