#include<iostream>
using namespace std;
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cout << "SHIP NAME CLASS DEPLOYMENT IN SERVICE" << endl;
cout << "N2 Bomber Heavy Fighter Limited 21 " << endl;
cout << "J-Type 327 Light Combat Unlimited 1 " << endl;
cout << "NX Cruiser Medium Fighter Limited 18 " << endl;
cout << "N1 Starfighter Medium Fighter Unlimited 25 " << endl;
cout << "Royal Cruiser Light Combat Limited 4 " << endl;
}