The same car factory is now automating their car building process.
They have three assembly lines:
- specialized in building only "white corolla" models,
- specialized in building "corolla" models with customer preferred colors.
- specialized in building customer preferred models and colors.
Everything was going well until a new customer came in and asked about cars with 2 doors!
As the chief engineer, your task is to change the assemly lines to have a deafult of 4 doors for all cars, and have a new assembly line with customer defined models, colors and the number of doors.
Input
Input starts with an integer n denoting number of customer requests.
Each of the n lines contain one of the 4 request types with customer asks.
Output
For each line, print the car color, model and number of doors. See the samples for the formatting.
Sample
Sample Input | Sample Output |
---|---|
5 1 2 black 3 black accord 4 red ferrari 2 2 orange | white corolla with 4 door(s) black corolla with 4 door(s) black accord with 4 door(s) red ferrari with 2 door(s) orange corolla with 4 door(s) |