#include <bits/stdc++.h>
std::ifstream fin ("bowling.in");
std::ofstream fout ("bowling.out");
int main()
{
std::ios_base::sync_with_stdio(false);
std::cin.tie (NULL);
std::cout.tie (NULL);
int sg[50005];
sg[0] = 0;
for (int i=1, j; i<=50000; i++){
bool s[100] = {};
for (j=0; j<i and j <= 40; j++)
if ((sg[j] ^ sg[i-j-1]) < 100)
s[sg[j] ^ sg[i-j-1]] = 1;
for (j=0; j<i-1 and j <= 40; j++)
if ((sg[j] ^ sg[i-j-2]) < 100)
s[sg[j] ^ sg[i-j-2]] = 1;
for (j=0; s[j] == true; j++);
sg[i] = j;
}
int Q;
fin >> Q;
while (Q--){
int n, i, lung;
fin >> n;
bool x[n];
std::vector < int > arr;
for (i=0; i<n; i++)
fin >> x[i];
if (x[0] == 1)
lung = 1;
else
lung = 0;
for (i=1; i<n; i++){
if (x[i] == 1)
lung ++;
else{
if (lung)
arr.push_back (lung);
lung = 0;
}
}
if (lung)
arr.push_back (lung);
int grundy = 0;
for (i=0; i<arr.size(); i++)
grundy = grundy ^ sg[arr[i]];
if (grundy == 0)
fout << "Fumeanu\n";
else
fout << "Nargy\n";
}
return 0;
}