#include <iostream>

using namespace std;

int main(){
	string item_name;
	char item_code;
	float price,total;
	int quantity;
	
	cout << "Enter an item name: "<<endl;
	cin >> item_name;
	cout << "Enter the item code: "<<endl;
	cin >> item_code;
	cout << "Enter the price per unit: " <<endl;
	cin >> price;
	cout << "Enter the quantity: " <<endl;
	cin >> quantity;
	
	total=price *quantity;
	
	cout << " You entered the item name: "<< item_name<< endl;
	cout << " You entered the item code: " <<item_code<<endl;
	cout << " You entered the item price: " <<price<<endl;
	cout << " You entered the item quantity: " << quantity<<endl;
	cout << "The total cost: " << total<<endl;

return 0;

}
