import java.text.DecimalFormat;

class PercentFormat
{
	public static void main (String[] args) throws java.lang.Exception
	{
		double x = 0.15625;
		String s = new DecimalFormat("0.0%").format(x);
		System.out.println(s);
	}
}