Problem Statement :
Write code of Greatest Common Divisor
Input Format:
The input contains a single line with the two numbers ’first’ and ‘second’, whose GCD has to be found.
Output Format:
The output consists of a single line containing the GCD of the two numbers.
Given:
10 3
Output:
1