public class TypeConversion {
 public static void main(String[] args) {
  byte b = 127;
  int i = 100;

  System.out.println((byte)(b+i));

 }
}


저게 왜 -29가 나오는 건가요????ㅜㅜ