about summary refs log tree commit diff
path: root/daily/285easy/1dec.py
blob: 2a05ec4226b495d42f1ef55e7d0f99356bd0b8a7 (plain) (blame)
1
2
3
4
5
6
7
#!/usr/bin/env python3

from binascii import a2b_uu

with open('1dec.inp') as fi, open('1dec.out', 'w') as fo:
    for line in fi:
        fo.write(a2b_uu(bytes(line, 'ascii')).decode())