#Lutece0781. Virology

Virology

Migrated from Lutece 781 Virology

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Little is understood about the virus and the way it infects its human hosts, but what has been discovered is a peculiar pattern in human DNA that can tell virologists if a particular person is vulnerable or immune to the virus. DNA was sampled from every individual working with the CDC, and a pattern was recognized to be present in only those who were infected by the virus.

We have isolated 99 genes within human DNA that can tell us if a person is vulnerable to infection. Most people have at least 1414 occurrences of these genes. An individual that is considered vulnerable is known to have met the following conditions:

  • The individual must have exactly 1414 occurrences of the numbered DNA genes (191-9). You will only test samples from people that meet this condition. There will be a max of 33 of the same gene in a test case. The order of the genes is not significant.

  • Within their DNA there must be 4 total instances of triples and/or straights and 11 pair

  • triples (33 of the same gene, example: [77 77 77]

  • straights of 33 (examples: [11 22 33] [77 88 99] [44 55 66])

  • pair (22 of the same gene, example: [99 99])

Note: An instance of a gene cannot be reused in multiple sets

So if an individual with 1414 numbered genes in their DNA has

  • 44 triples/straights AND
  • 11 pair then they are vulnerable. If this pattern cannot be found in an individual's DNA then that individual is immune\textbf{immune}.

Your job is to take a list of DNA samples from individuals with 1414 of the numbered genes and determine if they are vulnerable.

Input

The first number will be the number of test cases N(1N200000)N (1 \leq N \leq 200000). Following that will be NN lines of 1414 numbers separated by spaces indicating the genes present in the DNA.

Output

If an individual is vulnerable to the virus, output Vulnerable. Otherwise, output Immune. Output each answer on a separate line.

Samples

2
1 1 2 3 4 4 4 5 6 7 7 8 9 1
1 1 1 2 3 4 4 4 5 6 6 7 8 9
Vulnerable
Immune

Resources

2013 ACM ICPC South Central USA Regional Programming Contest