您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

9 行
126B

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