#include <iostream>
using namespace std;
struct product {
string name;
float price;
string shop;
float weight;
string size;
};
int main() {
struct product example;
cout << "Enter name:";
cin >> example.name;
cout << "Enter Price:";
cin >> example.price;
cout << "Enter shop name:";
cin >> example.shop;
cout << "Enter Weight:";
cin >> example.weight;
cout << "Enter Size:";
cin >> example.size;
cout << "Name: " << example.name << endl;
cout << "Price: " << example.price << endl;
cout << "Shop name: " << example.shop << endl;
cout << "Weight: " << example.weight << endl;
cout << "Size: " << example.size << endl;
return 0;
}