public class ShortCalculator { public static short add(short a,short b) { return (short)(a + b); } }