#include<stdio.h>
struct pradeep
{
    char str[50];
    int n,p;
};
int main()
{
    struct pradeep pro;
    char str[50],n,p;
    scanf("%s",&pro.str);
    scanf("%d",&pro.n);
    scanf("%d",&pro.p);
    printf("Product Name: %s",&pro.str);
    printf("Price: %d\n",pro.n);
    printf("Quantity: %d\n",pro.p);
    
}