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