Program To Perform addition of two numbers and print the result.

num1 = 5
num2 = 7
sum = num1 + num2
print("The sum is:", sum)
Output:

The sum is: 12

Leave a Reply

Your email address will not be published. Required fields are marked *