
public class Casting
{
    public static void main(String[] args)
    {
        short  a = 1;
        int    b = 2;
        float  c = 3;
        double d = 4;  // Try a value > 32768
        
        a = (short) d; // Allow if d is converted to short
        b = (int) c;   // Allow if c is converted to int
    }
}  
