#include <stdio.h>
#include <string.h>
void main()
{
  char pn;
  int p,q;
  scanf("%s %d %d",&pn,&p,&q);
  printf("Product Name: %s",pn);
  printf("Price: %d",p);
  printf("Quantity: %d",q);
}