#include<stdio.h>
#include<string.h>
struct product {
    char name[50];
    union{
        int price;
        int quantity;
    }
    info;
    int price;
    int quantity;
};
int main(){
    struct product p;
    scanf("%s", p.name);
    scanf("%d", &p.price);
    scanf("%d",%p.quantity);
    if (p.price < 0 || p.quantity < 0){
        printf("Invalid input");
        return 0;
    }
    printf("Produce Name: %s\n",p.name);
    printf("Price: %d\n", p.price);
    printf("Quantity: %d", p.quantity);
    return 0;
}