## Python, 38 bytes <!-- language-all: lang-python --> lambda l:[sum(r)+4>>3for r in zip(*l)] Rounds the average (towards the nearest integer, with halves rounding up) by adding 4 to the sum, then floor-dividing by 8 via the bit-shift `>>3`.