mirror of
https://github.com/logos-storage/bittorrent-benchmarks.git
synced 2026-01-07 15:33:10 +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
|