package examples;

public class Privacy {
    int pack = 1;
    protected int prot = 2;
    public final int pub = 3;

    void packM() {}
    protected void protM() {}
    public void pubM() {}
}
