WAP a program to add three numbers with help of functions
Answers
Answered by
2
inp = [int(i) for i in input().split()]
def add(var):
return sum(var)
sum = add(inp)
print(sum)
Note - The Code is in Python
Please Mark this as Brainliest
And Thank Me
Similar questions