# This program adds two numbersnum1 = 1.5num2 = 6.3# Add two numberssum = num1 + num2# Display the sumprint('The sum of {0} and {1} is {2}'.format(num1, num2, sum))
# This program adds two numbersnum1 = 1.5num2 = 6.3# Add two numberssum = float(num1) + float(num2)
# Display the sumprint('The sum of {0} and {1} is {2}'.format(num1, num2, sum))