Time Limit: 1s
Memory Limit: 128MB
두 정수 n1과 n2를 입력받아 최대공약수(greatest common divisor)를 구하는 프로그램을 작성하세요.
Write a program that find the greatest common divisor of two integers n1 and n2
* Line 1 : 테스트케이스 T (1~1,000)
* Line 2 ~ T+1 : n1 n2
- n1과 n2는 1~1,000 범위의 정수
* Line 1 ~ T : GCD
4 2 3 2 4 67 203 638 932
1 2 1 2
JAVA2015 PE5.14