Computer Science, asked by typewritter22, 10 months ago

WAP a program to add three numbers with help of functions

Answers

Answered by gaganadithyareddy9
0

Answer:

Hey this is in python....

def add(n1, n2, n3):

   return n1+n2+n3

sum = add(2, 3, 4)

print(sum)

# HOPE THIS HELPS!!

Similar questions