#include <iostream>
using namespace std;

int main()
{
string part_num;
string part_des;
int part_price;
int part_quant;

cout<<"Please enter the part number: ";
cin>>part_num;
cout<<"\n" << part_num <<endl;

cout<<"Please enter the part description: ";
cin>>part_des;
cout<<"\n" << part_des <<endl;

cout<<"Please enter the part price: ";
cin>>part_price;
cout<<"\n" << part_price <<endl;

cout<<"Please enter the part quantity: ";
cin>>part_quant;
cout<<"\n" << part_quant <<endl;
}