Computer Science, asked by typewritter22, 8 months ago

WAP a program to add three numbers with help of functions

Answers

Answered by Kaushikkalesh
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