PROGRAMMING:jmu_ python_ Greatest common divisor & least common multiple
This problem requires two integers (separated by commas) to be input from the keyboard, and the greatest common divisor and the least common multiple of the two numbers can be calculated by programming
Tips: the greatest common divisor can be obtained by division, and the least common multiple can be obtained by dividing the product of two numbers by the greatest common divisor
###Input format:
Enter two integers on a line, separated by commas
###Output format:
Output "GCD: A, LCM: B", where a is the greatest common divisor and B is the least common multiple
**Note: there is a space after the comma**
###Input example:
```in
12,14
```
###Output example:
```out
GCD:2, LCM:84
```
answer:If there is no answer, please comment
Tips: the greatest common divisor can be obtained by division, and the least common multiple can be obtained by dividing the product of two numbers by the greatest common divisor
###Input format:
Enter two integers on a line, separated by commas
###Output format:
Output "GCD: A, LCM: B", where a is the greatest common divisor and B is the least common multiple
**Note: there is a space after the comma**
###Input example:
```in
12,14
```
###Output example:
```out
GCD:2, LCM:84
```
answer:If there is no answer, please comment