Programme Python pour ajouter deux nombres en utilisant la fonction
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