Programa Python para adicionar dois números usando a função
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