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

import java.math.*;

/* 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
	{
		BigDecimal value = new BigDecimal("099123456789450.30");
		value = value.setScale(0, RoundingMode.HALF_UP);
		System.out.println(value.toPlainString());
	}
}