try:
    y = 3
    raise OverflowError
except:
    raise SyntaxError
print("that's all")
