// To calculate how much the east coast division will make in sales this year

public class SalesPrediction
{
	public static void main(String[]args)
	{
		double Sales = 0.62;
		double Total = 46000000;
		double Output;

		Output = Sales * Total;

		System.out.println("The East Coast division will generate a Total of " + Output);

	}
}

