#include<stdio.h>
#include<string.h>
struct store{
    char pn;
    int pp,pq;
};
int main()
{
    struct store s;
    scanf("%s",s.pn);
    scanf("%d",&s.pp);
    scanf("%d",&s.pq);
    if(s.pp<=0 || s.pq<=0)
    {
        printf ("Invalid input ");
    }
    else
    {
        printf("Product Name; %c\n",s.pn);
        printf("Price; %d\n",s.pp);
        printf("Quantity; %d\n",s.pq);
    }
    return 0;
}
    return 0;
}