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