Metadata-Version: 2.1
Name: addtwo
Version: 0.0.1
Summary: adding number
Home-page: https://github.com/Pushkar-Singh-14/
Author: Sahil Arora
Author-email: sarora160@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

# Add Two Numbers Demo

A Python package to add two numbers

## Usage

def sum(a,b):
   c=a+b
   return c

