python function to print a sum from 2 numbers code example
Example 1: sum of 2 numbers in python
a = int(input("Enter first number:"))
b = int(input("Enter second number:"))
sum = a+b
print(sum)
Example 2: how to return the sum of two numbers python
def add(a, b):
return a + b