public class ShortCalculator { public Short shortCalculatorSum (Integer firstValue, Integer SecondValue){ int x = firstValue + SecondValue; short xShort = (short)x; return xShort; } public Short shortCalculatorDifference (Integer firstValue, Integer SecondValue){ int x = firstValue - SecondValue; short xShort = (short)x; return xShort; } public Short shortCalculatorProduct (Integer firstValue, Integer SecondValue){ int x = firstValue * SecondValue; short xShort = (short)x; return xShort; } public Short shortCalculatorQuotient (Integer firstValue, Integer SecondValue){ int x = firstValue / SecondValue; short xShort = (short)x; return xShort; } public Short shortCalculatorRemainder (Integer firstValue, Integer SecondValue){ int x = firstValue % SecondValue; short xShort = (short)x; return xShort; } }