Homeexamples Python program to add two numbers Admin -April 06, 2022 0 # Python3 program to add two numbersnum1 = 15num2 = 12# Adding two nossum = num1 + num2# printing valuesprint("Sum of {0} and {1} is {2}" .format(num1, num2, sum))OUTPUT: Sum of 15 and 12 is 27 Tags: examples Python Facebook Twitter