public class MainClass{ public static void main(String[] argv){ byte b = 27; //The preceding code is identical to the following: b = (byte) 27; // Explicitly cast the int literal to a byte System.out.println(); } }