2011 Canadian Computing Competition, Stage 1

Problem J1: Which Alien?

Canada Cosmos Control has received a report of another incident. They believe that an alien has illegally entered our space. A person who witnessed the appearance of the alien has come forward to describe the alien’s appearance. It is your role within the CCC to determine which alien has arrived. There are only 3 alien species that we are aware of, described below:

  • TroyMartian, who has at least 3 antenna and at most 4 eyes;
  • VladSaturnian, who has at most 6 antenna and at least 2 eyes;
  • GraemeMercurian, who has at most 2 antenna and at most 3 eyes.

Input Format

The user will be prompted to enter two numbers. First, the user will be prompted to enter the number of antenna that the witness claimed to have seen on the alien. Second, the user will be prompted to enter the number of eyes seen on the alien.

Output Format

The output will be the list of aliens who match the possible description given by the witness. If no aliens match the description, there is no output.

Sample Cases

Input

4
5

Output

VladSaturnian

Input

2
3

Output

VladSaturnian
GraemeMercurian

Input

8
6

Output


All Submissions
Best Solutions


Point Value: 3
Time Limit: 2.00s
Memory Limit: 16M
Added: Mar 01, 2011

Languages Allowed:
C++03, PAS, C, HASK, ASM, RUBY, PYTH2, JAVA, PHP, SCM, CAML, PERL, C#, C++11, PYTH3

Comments (Search)

some of the descriptions for the antennas and eyes contradict and have numbers that are the same, this makes my code not input the correct alien. How do I fix it?

The output will be the list of aliens who match the possible description given by the witness.