Sum of 3 Numbers

PHOTO EMBED

Tue Aug 12 2025 02:39:53 GMT+0000 (Coordinated Universal Time)

Saved by @root1024 ##python

# Sum of 3 Numbers
x = int(input("Enter 1st no. : "))
y = int(input("Enter 2nd no. : "))
z = int(input("Enter 3rd no. : "))
sum = x+y+z
print("Sum of these nos. is : ", sum)
content_copyCOPY