#!/usr/bin/env python3
"""
from sys import argv
from struct import pack
hexes = open(argv[1], 'r').read()
bin = open(argv[2], 'wb')
for hex in hexes.split():
bin.write(pack('I', int(hex, base=16)))
"""
yield
=
=
=