/* Author: James Tam Version: 2015 */ public class AddAlgorithm implements Algorithm { public int execute (int x, int y) { return (x+y); } }