> For the complete documentation index, see [llms.txt](https://anton-veselskyi.gitbook.io/codding-problems-solutions/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://anton-veselskyi.gitbook.io/codding-problems-solutions/codewars/8-kyu/multiply.md).

# Multiply

## [Multiply](https://www.codewars.com/kata/50654ddff44f800200000004)

This code does not execute properly. Try to figure out why.

## Solutions

### 🐍 Python

```python
def multiply(a, b):
  if(a != None and b != None):
      return a * b
```

### 💲 Powershell

```
function Multiply($a, $b)
{
  return (( $a * $b ))
}
```
