#include <iostream>
#include <iomanip>
usingnamespace std;
int main()
{
int
number_ofstyle_American,
number_ofstyle_Modern,
number_ofstyle_Claassical;
float Style_American_price =85.00,
Style_Modern_price =57.00,
Style_Classical=127.75,
total_sale_American,
total_sale_Modern,
total_sale_Classical,
total_sale_ofAll;
total_sale_ofAll =total_sale_American +total_sale_Modern +total_sale_Classical;
total_sale_American=Style_American_price * number_ofstyle_American;
total_sale_Modern=Style_Modern_price * number_ofstyle_Modern;
total_sale_Classical=Style_Classical * number_ofstyle_Claassical;
cout<<" Please Enter The number of chairs type American Colonial sold :"<<endl;
cout<<" Please Enter The number of chairs type Modern sold :"<<endl;
cin>>number_ofstyle_Modern;
cout<<" Please Enter The number of chairs type Classical Colonial sold :"<<endl;
cin>>number_ofstyle_Claassical;
cout << fixed << showpoint;
cout<<total_sale_Modern<<endl;
cout << setprecision (5)<<total_sale_ofAll<<endl;
return 0;
}