public class Main{
public static void main(String[] args){
System.out.println("The size of short is "+Short.BYTES+" bytes.");
System.out.println("The size of int is "+Integer.BYTES+" bytes.");
System.out.println("The size of long is "+Long.BYTES+" bytes.");
System.out.println("The size of long long is "+Long.BYTES+" bytes.");
}
}