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