• + 0 comments

    class Arithmetic{ static int add(int a,int b) { return a+b; } }

    class Adder extends Arithmetic {

    }