Metadata-Version: 2.1
Name: Fkillerb
Version: 1.0.0
Summary: A simple package for matrix operations
Home-page: http://www.example.com
Author: Your Name
Author-email: your.email@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.txt
Provides-Extra: dev
Requires-Dist: check-manifest; extra == "dev"
Provides-Extra: test
Requires-Dist: coverage; extra == "test"

```markdown
# Fkillerb 

A simple Python package for Fkillerb  including addition and multiplication.

## Installation

```
sh
pip install Fkillerb 
```
## Usage

```
python
from Fkillerb import exp, log, fac, mul, div, add, sub

# exp
a=2
b=4
ans = exp(2,4)
print(ans)  # Output: 16

# log
a=2
b=4
ans=log(a,b)
print(ans) # Output: 2
# fac
a=4
ans=fac(a) 
print(ans) # Output: 24
# mul
cs=2
ans=mul(cs)
input:2,3
print(ans) # Output: 6
# div
a=10
b=1
ans=div(a,b)
input:2
print(ans) #Output: 5
# add
cs=2
ans=add(cs)
input:1,2
print(ans)#Output:3
# sub 
a=10
b=1
ans=sub(a,b)
input:2
print(ans)$output: 8


