public class TestByte { public static void main(String[] args) { byte b=13; short s=b; System.err.println(s); } }