public class ByteTest { public static void main(String[] s) { byte b = 8; m(b); m(7); } static void m(byte b) { System.out.print("byte"); } }