#include <stdio.h>
#include<string.h>
struct product
{
    char name;
    int p;
    int q;
};
int main() 
{
    struct product pr;
    scanf("%c",&pr.name);
    scanf("%d",&pr.p);
    scanf("%d",&pr.q);
    if(pr.p<==0||pr.q<==0)
    {
        printf("Invalid input");
    }
    else
    {
        printf("Product Name:%c \n",pr.name);
        printf("Price:%d \n",pr.p);
        printf("Quantity:%d ",pr.q);
        
    }
}