Problem I
Trapizza
Languages
en
is
Tryggvi, the owner of Mahjong Pizza, and Ómar, the owner of Trapizza, are nemeses. They always run into each other downtown and their conversations always end up in heated arguments, more often than not related to their pizzas. Tryggvi says that trapezoid shaped pizzas are immoral and society should not allow them to be sold in the country. Ómar says that round pizzas are a thing of the past and the future is all about having more creative shaped objects.
Their last argument ended up with a comparison of whose pizza was bigger, since the prize of the pizzas are the same. They cannot figure out which one has the bigger pizza, they are no mathematicians after all, so they are asking for your help. Tryggvi tells you the diameter of the pizzas he sells and Ómar tells you both sides and height of the pizzas he sells.
Input
The input consists of four lines. The first line consists of a single integer $0 \leq d \leq 100$, the diameter of Mahjong’s pizza. The second line consists of a single integer $0 \leq a \leq 100$, the length of one of the parallel sides of Trapizza’s pizza. The third line consists of a single integer $0 \leq b \leq 100$, the length of the other parallel side of Trapizza’s pizza. The fourth line consists of a single integer $0 \leq h \leq 100$, the height of Trapizza’s pizza.
Output
If Trapizza has the bigger pizza, output "Trapizza!". If Mahjong has the bigger pizza, output "Mahjong!". If the pizzas are the same size, output "Jafn storar!".
Scoring
Group |
Points |
Constraints |
1 |
100 |
No further constraints. |
Sample Input 1 | Sample Output 1 |
---|---|
11 4 8 1 |
Mahjong! |
Sample Input 2 | Sample Output 2 |
---|---|
10 15 5 8 |
Trapizza! |
Sample Input 3 | Sample Output 3 |
---|---|
2 6 0 3 |
Trapizza! |