#include<iostream>
using namespace std;

int main()
{
	double tax = .086;       
	double discount = .12;
	double cost = 15500;
	double list_price;
	
	list_price = cost / ((1 + tax)*(.88));

	cout.precision(2);
	cout.setf(ios_base::fixed, ios_base::floatfield);

	cout << "The list price of the car is: $" << list_price <<"\n";

	return 0;
}
