Madhu Patel
explain python then write the code.
# Adding two numbers in Python num1 = 5 num2 = 3 sum = num1 + num2 print("The sum of", num1, "and", num2, "is:", sum)