# Leetcode No.492
**[題目連結](https://leetcode.com/problems/construct-the-rectangle/description/)**
## Python
```python=
class Solution:
def constructRectangle(self, area: int) -> List[int]:
for i in range(int(area**0.5),0,-1):
if area % i == 0:
return [int(area/i),i]
```