# Multiply

Multiply a value or another variable to your variable. Pass an integer or the name of a second variable as the parameter. Also supports `*` as shorthand.

```yaml
smiles: 3
winks: 4
```

::tabs

::tab antlers
```antlers
{{ smiles | multiply(10) }}
{{ smiles | multiply($winks) }}
{{ smiles | *($winks) }}

```
::tab blade
```blade
{{ Statamic::modify($smiles)->multiply(10) }}
{{ Statamic::modify($smiles)->multiply($winks) }}
```
::

```html
30
12
12
```
