Metadata-Version: 2.1
Name: sum-05182
Version: 0.0.1
Summary: adding unlimited number
Home-page: UNKNOWN
Author: Dileep Kumar
Author-email: dileep.k@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

This program is recursion based program that will add unlimited numbers.
This is just for learning purpose.

Code:
"
def add(*c):
  d = sum(c)
  return d
"

