Why does sum of two short variables cannot be short? Why we need to add int?
{ short a = 1; short b = 1; short c = a+b; System.o