Metadata-Version: 2.1
Name: coolmath1
Version: 0.5
Summary: A simple math library
Home-page: https://github.com/epythonlab/coolmath
Author: Asibeh Tenager
Author-email: asibeh.tenager@gmail.com
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown

# coolmath

A simple Python library for basic mathematical operations.

## Installation

You can install this library using pip:

```bash
pip install coolmath1
```
# Usage

```bash
from coolmath1 import add, subtract, multiply, divide

result_add = add(5, 3)
result_subtract = subtract(10, 4)
result_multiply = multiply(6, 7)
result_divide = divide(8, 2)

print(f"Addition: {result_add}")
print(f"Subtraction: {result_subtract}")
print(f"Multiplication: {result_multiply}")
print(f"Division: {result_divide}")

