Description:
Take two numbers and print their sum.
Take two numbers and print their sum.
Python Code
a = 10
b = 25
result = a + b
print("Sum:", result)
Expected Output
Sum: 35