# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

from onnxscript.onnx_opset import opset15 as op
from onnxscript.onnx_types import FLOAT


def multi(A: FLOAT["N"]) -> FLOAT["N"]:
    x, y = op.Split(A)
    x, y = op.Split(x)
    return x + y
