## compute()


Compute the combined value of two numbers.


Usage


``` python
compute(
    x,
    y,
)
```


## Parameters


`x: float`  
The first input value.

`y: float`  
The second input value.


## Returns


`float`  
The computed result.


## Examples

``` python
>>> compute(3.0, 4.0)
```

7.0
