"""
get exposed to various mischief...
"""
from mystery import wtf


if __name__ == "__main__":
    try:
        wtf()
    except IndexError as e:
        print("oooops!")
        print(e)
    except ZeroDivisionError as e:
        print("double ooops!")
        print(e)
    except Exception as e:
        print("general ooops!")
        print(e)
    print("we got through it!")
