4 lines
100 B
Python
Executable file
4 lines
100 B
Python
Executable file
#!/usr/bin/python3
|
|
import sys, math
|
|
intg = int(sys.argv[1])
|
|
print(int(math.ceil(intg/512)), end='')
|