public class Type_con { public static void main(String[] args) { short s = 131; byte b = (byte)s; System.out.println(b); } }