# NumPy import
try:
    import numpy as np
    msg = """
      Success
    """
except:
    msg = """
    No NumPy. Failure.
    """
    
print(msg)