#include <iostream>
using namespace std;

// Sales Prediction

int main() {
	float eastCoast = 0.62; // East Coast Sales Divison's contribution to the total sales represented as a percentage
	float companySales = 4.6e6; // Total Sales of the company
	int eastCoastPred = eastCoast * companySales; // estimated contribution of East Coast division in dollars
	cout << eastCoastPred;
	return 0;
}