Misc [0]
You are a swinging on circular string in a counter clockwise direction, and every second you will move revolutions around the circle.
You start off facing North, but wonder if at any integer second in the future you'll be facing exactly South, East or West.
Input
Input will contain two space-separated positive integers and .
Output
If you will never face South, East or West at an integer time, print Free!
Otherwise, print Other axis!
Constraints
Example
Input
4 6
Output
Free!
Explanation
Every second you will move rotations, which looks like the following at seconds 0, 1, 2, 3 (and then repeats):
So you'll never be facing any cardinal direction but North.
Comments