#include<stdio.h>
struct lap{
    char model;
    char processor;
    float weight;
    int price;
};
int main(){
    struct lap HP={"Victus","Ryzen 9",1.7,95000};
    struct lap Lenovo={"Legion","Intel 9 Ultra",2.2,145000};
    struct lap ASUS={"ROG","Ryzen 9",2.7,250000};
    printf("HP\n");
    printf("%s\n%s\n%.1f\n%d\n",HP.model,HP.processor,HP.weight,HP.price);
     printf("\n\nLenovo\n");
    printf("%s\n%s\n%.1f\n%d\n",Lenovo.model,Lenovo.processor,Lenovo.weight,Lenovo.price);
     printf("\n\nASUS");
    printf("\n%s\n%s\n%.1f\n%d\n",ASUS.model,ASUS.processor,ASUS.weight,ASUS.price);
}