import java.lang.Integer;

class Other {
    static field = 20;
}

public class Static {
    static i = 20;

    static {
        var x = 30;
        i = x;
    }

    static m() {
        return i + Other.field;
    }
}