package examples;

class FpError {
    public static void main(String argv[]) {
        float fmin = Float.MIN_VALUE;
        float fmax = Float.MAX_VALUE;
        double dmin = Double.MIN_VALUE;
        double dmax = Double.MAX_VALUE;
        String b = " ";
        System.out.println(fmin + b + fmax +
                b + dmin + b + dmax);
    }
}