30_import.py 94 B

12345678
  1. try:
  2. import os
  3. except ImportError:
  4. exit(0)
  5. import test1
  6. assert test1.add(1, 2) == 13