Limits 1s, 512 MB

Instead of restoring Peter's previous life, Doctor Strange's botched spell attracted enemies and other Spider-Man from across the multiverse. Doctor Strange had to cast the counter spell that made everyone forget who Peter Parker was in order to fix and restore everything. Peter Parker, the friendly neighbourhood Spider-Man, has vanished from the memories of everyone he knew and loved.

Emotionally frustrated Peter, decided to communicate with his Spider-Mentors, Spider-Man 1 and Spider-Man 2. But there are billions of other universes in the multiverse and he has no idea which ones they are in. He commanded EDITH (an artificial tactical intelligence system created by Tony Stark) to calculate the number of universes from which the other two Spider-Man could have emerged.

Unfortunately EDITH was unable to complete this massive calculation and crashed in the middle of it. Initially she discovered that Spider-Man 1 and Spider-Man 2 are possibly from an even and an odd numbered universes respectively. Now EDITH is restarting and soon the program will be gone. As a promising programmer your job is to mimic EDITH’s program to help Peter in this mission.

Basically, you have to write a program that takes the universe number as an input and outputs which Spider-Man universe it can be. For example, for a positive even numbered universe, the program will print “The Universe of Spider-Man 1” and for an odd numbered universe, it will print “The Universe of Spider-Man 2”. For zero (0) the program outputs “The Universe of our Hero” as EDITH marked ‘0’ as our universe.

Input

The only line of input will contain one integer N indicating the Universe number.

0N50000 \leq N \leq 5000

Output

You have to output a single line, “The Universe of Spider-Man 1” (without quotes) if the universe number is positive even, or “The Universe of Spider-Man 2” (without quotes) if the universe number is odd, otherwise “The Universe of our Hero” (without quotes).

Samples

InputOutput
7
The Universe of Spider-Man 2
InputOutput
8
The Universe of Spider-Man 1

Be careful about the newline(‘\n’) at the end.

Submit

Login to submit.

Statistics

88% Solution Ratio
abu_fayeemEarliest, Mar '22
sodiumfis_hFastest, 0.0s
abu_fayeemLightest, 131 kB
user.091397Shortest, 177B
Toph uses cookies. By continuing you agree to our Cookie Policy.