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