public class Java1
{
public static void main(String ar[])
{
short s=0;
int x=7;
int y=8;
int z=123456;
s+=z;    //line 1
}
}
what is the data type of s in line 1?