N. Naming Wine Bottles
time limit per test
1 second
memory limit per test
512 megabytes
input
standard input
output
standard output

Wine is a sophisticated business. Bottling alone encompasses the art of label design, the physics of vacuum sealing, the craft of glassforming, and the calculus of volumetric shapes.

Today we will deal with literature: every size of wine bottle has a name. You may know that a "Standard" bottle holds 0.75L. Did you also know that a 15L bottle is a "Nebuchadnezzar", and a 12L is a mighty "Balthazar"?

Usually wine bottle sizes come in multiples of 1.5L. You have some other bottles in non-standard sizes and you will need to create impressive names for them as well. Note that any two bottles of the same size must have consistent names.

Input
  • On the first line, the number of bottles $$$n$$$ ($$$1 \le n \le 10\,000$$$)
  • On each of the following $$$n$$$ lines, the volume of a bottle $$$v$$$ ($$$0.0 \le v_i \le 10^4$$$) with up to $$$10$$$ digits after the decimal point, followed by an uppercase letter "L"
Output

For each given line, output one lower-case word, with Latin letters only, giving a name for this size of bottle.

Examples
Input
6
15L
0.88L
1.0L
1L
1000L
1024L
Output
nebuchadnezzar
hammurabi
standard
standard
giganebriator
gibinebriator
Input
3
0.03L
0.031L
0.03L
Output
small
smallish
small