(int a, int b)
| 20 | public class Code02_Pagodas { |
| 21 | |
| 22 | public static int gcd(int a, int b) { |
| 23 | return b == 0 ? a : gcd(b, a % b); |
| 24 | } |
| 25 | |
| 26 | public static void main(String[] args) throws IOException { |
| 27 | BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); |