• + 0 comments
    class Arithmetic{
        public static int add(int a, int b){return a+b;}
    }
    class Adder extends Arithmetic{}