Metadata-Version: 2.4
Name: simple-calculator-fath-alrahman-ahmed
Version: 0.1.0
Summary: A simple calculator package for basic math operations.
Home-page: https://github.com/fath-alrahman-ahmed/simple-calculator-fath-alrahman-ahmed
Author: Fath Alrahman Ahmed
Author-email: fath.alrahman.ahmed@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# simple-calculator-fath-alrahman-ahmed

A simple calculator package for basic math operations.

## Installation

```bash
pip install simple-calculator-fath-alrahman-ahmed
```

## Usage

```python
from simple_calculator_fath_alrahman_ahmed import add, subtract, multiply, divide

print(add(5, 3))       # Output: 8
print(subtract(5, 3))  # Output: 2
print(multiply(5, 3))  # Output: 15
print(divide(5, 3))    # Output: 1.6666666666666667
```
```

