/*
 * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
 * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
 */
package com.mycompany.ore;

/**
 *
 * @author szymc
 */
public class Main {
    static int nwd(int n, int k){
        if (k == 0)
            return n;
        else
            return nwd(k, n%k);
        
    };
    public static void main(String[] args) {
        int n = 24;
        int k = 28;
        System.out.print(nwd(n,k));
    }
}
