Please find the greatest common divisor of two natural numbers. A clue is: The Euclid's algorithm is a way to resolve this task.
The input file consists of several lines with pairs of two natural numbers in each line. The numbers do not exceed 100000.
The number of pairs (datasets) is less than 50.
Your program has to print the greatest common divisor for each pair of input numbers. Print each result on a new line.
57 38 60 84
19 12