# Find Remainder and Quotients

This repository contains a Python project designed to find quotients and remainders in long division. Utilities can be installed and used via `pip`.

## Installation

To install this project and its dependencies, follow these steps:

1. **Clone the repository** to your local machine:
   ```bash
   git clone https://github.com/DeFiDegenDude/Quotient-Remainder
   ```

to use:

from remainder_quotient import *
x = LongDivision(20, 3)
print(x.remainder)
print(x.quotient)