> For the complete documentation index, see [llms.txt](https://pyohamen.gitbook.io/til/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://pyohamen.gitbook.io/til/algorithm/implementation/lesat_common_multiple.md).

# Least common multiple

> 최소공배수

```python
Arr = list(map(int,list(input().split())))

n = 1
while n%Arr[0] or n%Arr[1] or n%Arr[2]:
    n += 1

print(n)
```
