This Python function, calculate_storage, calculates the total storage space required to store a file of a given size in bytes.
The storage system allocates space in blocks of 4096 bytes each. The function determines the number of fully occupied blocks
and checks if there's any remaining space that would require an additional block. If there is, it adds an extra block to the total.
The function returns the total storage space required in bytes.