public class helloworldgenekim {


public static void main(String[] args) {

// TODO Auto-generated method stub

int a = 263;

System.out.println(a);

        byte b = (byte) a;

System.out.println(b);

}


}

byte 가 127 까지밖에 안되는건 알고있는데 저렇게 형변환했는데 263이 왜 7이되는거임?