#include <iostream>
using namespace std;
struct product {
string name;
float price;
string shop;
float weight;
string size;
};
int main() {
struct product example;
printf("Enter name:");
scanf("%s", &example.name);
printf("Enter Price:");
scanf("%f", &example.price);
printf("Enter shop name:");
scanf("%s", &example.shop);
printf("Enter Weight:");
scanf("%f", &example.weight);
printf("Enter Size:");
scanf("%s", &example.size);
printf("Name %s\n", example.name);
printf("Price %f\n", example.price);
printf("Shop name %s\n", example.shop);
printf("Weight %f\n", example.weight);
printf("Size %s\n", example.size);
return 0;
}