2609번: 최대공약수와 최소공배수

문제:

두 개의 자연수를 입력받아 최대 공약수와 최소 공배수를 출력하는 프로그램을 작성하시오.

입력:

첫째 줄에는 두 개의 자연수가 주어진다. 이 둘은 10,000이하의 자연수이며 사이에 한 칸의 공백이 주어진다.

풀이:

코드:

#include <iostream>

using namespace std;

int main(){
	int first, second, multiple;
	//입력
	cin >> first;
	cin >> second;
	//최소공배수=두수의 곱/최대공약수이므로 나중에 최소공배수 구할 때 필요하다 
	multiple = first*second;
	//유클리드 호제법 구현 
	while(first%second){
		int temp = first;
		first = second;
		second = temp%second;
	}
	//출력 
	cout << second <<'\\n'<< multiple/second;
}