#include <iostream>
using namespace std;
int main(){
    string brand;
    string model;
    int rate;
    cin>>brand;
    cin>>model;
    cin>>rate;
    cout<<"Brand: "<<brand<<endl;
    cout<<"Model: "<<model<<endl;
    if(price>=5000){
        cout<<"Daily Rate: "<<"$"<<price<<endl;
        cout<<"Rental Category: "<<"Luxury";
    }
    else if(price<=3000 && price<5000){
        cout<<"Daily Rate: "<<"$"<<price<<endl;
        cout<<"Rental Category: "<<"Premium";
    }
    else{
        cout<<"Daily Rate: "<<"$"<<price<<endl;
        cout<<"Rental Category: "<<"Economy";
    }
    return 0;
}