You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 line
135B

  1. import re
  2. import sys
  3. from intcode import compute
  4. text = sys.stdin.read()
  5. print(next(compute(text, 1)))
  6. print(next(compute(text, 2)))