Untitled

 avatar
unknown
plain_text
a year ago
138 B
2
Indexable
def sum_of_numbers(*args):
    return sum(args)

# Example usage:
result = sum_of_numbers(1, 2, 3, 4, 5)
print("Sum of numbers:", result)
Editor is loading...
Leave a Comment