#K46337. Determine Student Group
Determine Student Group
Determine Student Group
You are given a positive integer representing a student's assigned number. A student is placed in the First Group if their number is even, and in the Second Group if their number is odd. In other words, if \( X \) is the given number, then:
- If \( X \mod 2 = 0 \), the student belongs to the First Group.
- If \( X \mod 2 = 1 \), the student belongs to the Second Group.
You will be given multiple test cases. For each test case, determine the appropriate group for the provided number.
inputFormat
The first line contains a single integer \( T \) (\(1 \le T \le 10^5\)), the number of test cases. Each of the next \( T \) lines contains one integer \( X \) (\(1 \le X \le 10^9\)), representing the student's assigned number.
outputFormat
For each test case, output a single line containing First Group if the number is even, and Second Group if the number is odd.
## sample3
1
4
7
Second Group
First Group
Second Group
</p>