Computer Science, asked by HITANSHIAGRWAL, 6 months ago

wap to add two numbers entered by the user in python​

Answers

Answered by Anonymous
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 Oreki
1

numOne, numTwo = input("Enter first number - "), input("Enter second number - ")

print("Sum -", int(numOne) + int(numTwo))

Similar questions