Short a=1;int b=a.intValue();
Short a=1; int b=Integer.parseInt(a.intValue());
short b=1; int a=(int)b;