Metadata-Version: 2.1
Name: VMCalculator
Version: 0.0.1
Summary: A basic calculator
Author-email: VENMUHIL BHARATHI G <venmuhilvmb@gmail.com>
Project-URL: Homepage, https://github.com/pypa/sampleproject
Project-URL: Bug Tracker, https://github.com/pypa/sampleproject/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: License.txt

##Basic Calculator 
Can be used for addition, subraction ,division and finding the remainders
##SOURCECODE:
def add(a,b):
    return a+b
def subract(a,b):
    return a-b
def multiply(a,b):
    return a*b
def divide(a,b):
    return a/b
def remainder(a,b):
    return a%b
