#include<stdio.h>
struct store
{
    int Product;
    int Price;
    int Quantity;
};
int main()
{
    struct store mt;
    scanf("%s",&mt.Product);
    scanf("%d",&mt.Price);
    scanf("%d",&mt.Quantity);
    if(mt.Product<0 || mt.Price<0 || mt.Quantity<0)
    {
        printf("Invalid input");
    }
    printf("Product Name: %s\n",mt.Product);
    printf("Price: %d\n",mt.Price);
    printf("Quantity: %d\n",mt.Quantity);
    return 0;
}