error: mul(int,int) has protected access in Multiplication
Thoughts on what I'm doing wrong?
public class Multiplication{
            protected int mul(int a,int b){
                return (a*b);
            }
        }
        class ImplimentPkg extends Multiplication {
            public static void main(String args[]){
                Multiplication obj=new ImplimentPkg();
               //Here's the error
                System.out.println(obj.mul(2,4));
            }
            protected int mul(int a,int b){
                    System.out.println("");
                    return 0;
                }
        }
 
     
     
     
    