AddTwoNumbersInPython.py
python# Python3 program to add two numbers num1 = 15 num2 = 12 # Adding two numbers sum = num1 + num2 # printing values print("Sum of", num1, "and", num2 , "is", sum)
August 6, 2023
python# Python3 program to add two numbers num1 = 15 num2 = 12 # Adding two numbers sum = num1 + num2 # printing values print("Sum of", num1, "and", num2 , "is", sum)