Mario and mashroom
Mario transforms each time he eats a mushroom as follows:
-If he is currently small, he turns normal.
-If he is currently normal, he turns huge.
-If he is currently huge, he turns small.
Given that Mario was initially normal, find his size after eating X mushrooms.
Input:-3
2
4
12
Input Description: The first line of input will contain one integer T, The number of test cases. Then The test cases follow.
-each test case contains A single line of input, containing one integer X.
Output: SMALL
HUGE
NORMAL
Output Description: For each test case, output in a single line Mario's size after eating X mushrooms.
Print:
-NORMAL, if his final size is normal.
-HUGE, if his final size is huge.
-SMALL, if his final size is small.
Each character can either be printed in uppercase or lowercase.
Constraints: 1<=T<=100
1<=X<=100
Explanation: Test case 1: Mario's initial size is normal. On eating the first mushroom, he turns huge. On eating the second mushroom, he turns small.
Test case 2: Mario's initial size is normal. On eating the first mushroom, he turns huge. On eating the second mushroom, he turns small. On eating the third mushroom, he turns normal. On eating the fourth mushroom, he turns huge.