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