Metadata-Version: 2.4
Name: quangdat
Version: 0.1.0
Summary: Thu vien Python cho phep cong, tru, nhan, chia
Author: Quang Dat
License: MIT
Keywords: math,calculator,basic-math
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# quangdat

Thu vien Python don gian cho 4 phep tinh: cong, tru, nhan, chia.

## Cai dat

```bash
pip install quangdat
```

## Su dung

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

print(add(10, 5))       # 15
print(subtract(10, 5))  # 5
print(multiply(10, 5))  # 50
print(divide(10, 5))    # 2.0
```
