ques 3 find the sum of two numbers?

PHOTO EMBED

Mon May 04 2026 11:26:21 GMT+0000 (Coordinated Universal Time)

Saved by @abhishek2010

Number1 = int(input("Enter a number 1 : "))
Number2 = int(input("Enter a number 2 : "))
sum = Number1+Number2
print("The Sum of the Two numbers is : ", sum)
content_copyCOPY