Programa de Python para agregar dos números usando la función
num1 = int(input('Enter the first number: '))
num2 = int(input('Enter the second number: '))
def sum_input(num1,num2):
sum = num1 + num2
return sum
Siddhant Singh