class JoinByAdding implements Joiner { public Integer join(Integer int1,Integer int2) { return int1+int2; } }