class Ideone
{
	public static void main (String[] args) throws java.lang.Exception {
		System.out.println(Double.MIN_VALUE);
		System.out.println(Float.MIN_VALUE);
		
		System.out.println(Double.MAX_VALUE * -1);
		System.out.println(Float.MAX_VALUE * -1);	
	}
}