mirror of
https://github.com/logos-storage/bittorrent-benchmarks.git
synced 2026-01-04 14:03:09 +00:00
7 lines
113 B
Python
7 lines
113 B
Python
def kilobytes(n: int) -> int:
|
|
return n * 1024
|
|
|
|
|
|
def megabytes(n: int) -> int:
|
|
return kilobytes(n) * 1024
|