728x90
import java.io.*;

public class chp4_8_5 {
	static int gcd(int n, int m) {
		while(n!=m)
			if(n>m) n-=m;
			else m-=n;
		return n;
	}
	public static void main(String[] args) throws java.io.IOException{
		BufferedReader input = new BufferedReader(new InputStreamReader(System.in));
		int n,m;
		
		n = Integer.parseInt(input.readLine());
		m = Integer.parseInt(input.readLine());
		
		int gcd = gcd(n,m);
		int lcd = (m/gcd) * (n/gcd) * gcd;
		
		System.out.println("gcd = " + gcd);
		System.out.println("lcd = " + lcd);
	}

}

반응형
  • 네이버 블러그 공유하기
  • 네이버 밴드에 공유하기
  • 페이스북 공유하기
  • 카카오스토리 공유하기