    public int dummy(int n) {
        if (n<1) {
            return 0;
        } else {
            return 1;
        }
    }
