2939.Contest

Time Limit: 1s Memory Limit: 256MB

Misha and Vasya participated in a Codeforces contest. Unfortunately, each of them solved only one problem, though successfully submitted it at the first attempt. Misha solved the problem that costs a points and Vasya solved the problem that costs b points. Besides, Misha submitted the problem c minutes after the contest started and Vasya submitted the problem d minutes after the contest started. As you know, on Codeforces the cost of a problem reduces as a round continues. That is, if you submit a problem that costs p points t minutes after the contest started, you get 2939_1.png points.

Misha and Vasya are having an argument trying to find out who got more points. Help them to find out the truth.

Input Format(From the terminal/stdin)

The first line contains four integers a, b, c, d (250 \le a,b \le 3500, 0 \le c,d \le 180).

It is guaranteed that numbers a and b are divisible by 250 (just like on any real Codeforces round).

Output Format(To the terminal/stdout)

Output on a single line:

"Misha" (without the quotes), if Misha got more points than Vasya.

"Vasya" (without the quotes), if Vasya got more points than Misha.

"Tie" (without the quotes), if both of them got the same number of points.

Sample Input 1

Copy
500 1000 20 30
   ·    ·  ·  \n

Sample Output 1

Copy
Vasya
     \n

Sample Input 2

Copy
1000 1000 1 1
    ·    · · \n

Sample Output 2

Copy
Tie
   \n

Sample Input 3

Copy
1500 1000 176 177
    ·    ·   ·   \n

Sample Output 3

Copy
Misha
     \n

Submit

请先 登录

© 2025 FAQs