12345678910
  1. public class ShortCalculator {
  2. public static short add(short a,short b) {
  3. return (short)(a + b);
  4. }
  5. }