JH1 - Size Contest!!!Reloaded!!

After seeing the popularity of the question size contest, Aradhya  thought of adding its new version.

The problem statement is really simple. You are given 'n' and and then next n lines contain 'n' numbers.You have to calculate p and q.

'p' is the sum of numbers at even places ,but we add them only if they are positive.

'q' is the sum of numbers at odd places,but we add them only when they are negative.

Then you need to find the absolute value of p and q.

If p is greater  than q or equal to q,then print "Some Mirrors Lie!". Wink ( without quotes )

If q is greater than p, then print "Every Girl Lies!" ( without quotes ) Laughing


Input

First line contains a integer t=number of test cases.

Then each test case contains a number n. and next line conatin 'n' numbers separated by a space.

1<=n<=100

and the numbers are less than 10^18

Output

A single line for each test case as described above.

Example

Input:
1
5
-1 2 -3 5 -4

Output:
Every Girl Lies!

Mind you--->The less your fingers work Cool .The more you GAIN!!!LaughingLaughingLaughing
Note -- > Source Limit is made a little strict !!Surprised.. So chill out !!Laughing

Added by:Aradhya
Date:2012-06-29
Time limit:1s
Source limit:250B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ASM64 SCM qobi
Resource:Own Problem

hide comments
2014-01-10 16:43:16 Piotr KÄ…kol
It's probably because of bignums. You probably exceed the limit of used type. Changing it to bigger one fixed the problem.
2014-01-09 20:29:07 Hallvard Norheim Bø
@Piotr: for what input does my C solution fail? It uses the same algorithm as my AC Python solution.
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.