/* ITI 1121/1521. Introduction to Computer Science II * Assignment/Devoir 3 * * */ public class Plus implements Operator { public Integer apply( Integer first, Integer second ) { return new Integer( first.intValue() + second.intValue() ); } }