A postal service classifies mailable items (other than postcards) into three classes: letter, packet, and parcel. Every item has three dimensions — length, height, and thickness — where the length is the largest of the three and the thickness is the smallest. All measurements are in millimeters (mm).
Any item that matches none of these three classes is not mailable.
The input contains several items. Each item is given as its three dimensions (in mm), in any order, on one line. The length and the height are positive integers; the thickness is a positive integer or a positive floating-point number. The input ends with a line containing three zeros, which must not be processed.
For each item, print its classification on its own line — letter, packet, parcel, or not mailable — using lowercase letters.