Problem2054--Mishka and Game

2054: Mishka and Game

[Creator : ]
Time Limit : 2.000 sec  Memory Limit : 256 MiB

Description

Mishka is a little polar bear. As known, little bears loves spending their free time playing dice for chocolates. Once in a wonderful sunny morning, walking around blocks of ice, Mishka met her friend Chris, and they started playing the game.
Rules of the game are very simple: at first number of roundsnis defined. In every round each of the players throws a cubical dice with distinct numbers from1to6written on its faces. Player, whose value after throwing the dice is greater, wins the round. In case if player dice values are equal, no one of them is a winner.
In average, player, who won most of the rounds, is the winner of the game. In case if two players won the same number of rounds, the result of the game is draw.
Mishka is still very little and can't count wins and losses, so she asked you to watch their game and determine its result. Please help her!

Input

The first line of the input contains single integer $n\ (1≤n≤100)$ − the number of game rounds.
The next $n$ lines contains rounds description. $i$-th of them contains pair of integers $m_i,\ c_i\ (1≤m_i,c_i≤6)$− values on dice upper face after Mishka's and Chris' throws in $i$-th round respectively.

Output

If Mishka is the winner of the game, print "Mishka" (without quotes) in the only line.
If Chris is the winner of the game, print "Chris" (without quotes) in the only line.
If the result of the game is draw, print "Friendship is magic!^^" (without quotes) in the only line.

Sample 1 Input

3
3 5
2 1
4 2

Sample 1 Output

Mishka
Mishka loses the first round, but wins second and third rounds and thus she is the winner of the game.

Sample 2 Input

2
6 1
1 6

Sample 2 Output

Friendship is magic!^^
Mishka wins the first round, Chris wins the second round, and the game ends with draw with score 1:1.

Sample 3 Input

3
1 5
3 3
2 2

Sample 3 Output

Chris
Chris wins the first round, but there is no winner of the next two rounds. The winner of the game is Chris.

Source/Category