PROGRAMMING:Lawn easy edition
There is a rectangular grassland of M * n, which is now covered with a kind of square turf. Please calculate the minimum number of square turf?
###Input format:
Enter two positive integers m, n (1 = < m, n < = 10000) in one line and divide them with spaces.
###Output format:
Output the minimum number of square turf and the side length of the square in a row, with a space in the middle.
###Input example:
```in
27 9
```
###Output example:
```out
3 9
```
answer:If there is no answer, please comment
###Input format:
Enter two positive integers m, n (1 = < m, n < = 10000) in one line and divide them with spaces.
###Output format:
Output the minimum number of square turf and the side length of the square in a row, with a space in the middle.
###Input example:
```in
27 9
```
###Output example:
```out
3 9
```
answer:If there is no answer, please comment