## gamma()


Combine two values using the gamma operation.


Usage


``` python
gamma(
    x,
    y,
)
```


## Parameters


`x: int`  
The first input value.

`y: int`  
The second input value.


## Returns


`int`  
The combined result.


## Examples

``` python
>>> gamma(3, 4)
```

7
