int x = 50000; long y = x;
long x = 50000; // int y = x; -> 컴파일 에러 int y = (int) x; // 반드시 (type) 으로 명시적으로 형을 바꾸어 주어야 한다.