advent2022/eleven.py

10 lines
210 B
Python
Raw Normal View History

2022-12-11 23:36:55 +02:00
#!/usr/bin/env python3
from useful import *
def monkey(p):
ls = p.strip().split('\n')
op = ls[2].strip().split()[4]
return op, [numbers(l) for l in ls[1:]]
print(monkey(pgphs(open(0).read())[0]))