/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;
import java.text.DecimalFormat;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
       double a = 91.32;
       double b = 5.22;
       double c =  11.5;
       double d =  1.2;
       double e =  2.6;
       
        System.out.println(getTwoDecimals(a));
        System.out.println(getTwoDecimals(b));
        System.out.println(getTwoDecimals(c));
        System.out.println(getTwoDecimals(d));
        System.out.println(getTwoDecimals(e));
       
	}
	
	private static String getTwoDecimals(double value){
      DecimalFormat df = new DecimalFormat("0.00"); 
      return df.format(value);
    }
	
}