A. Contest

time limit per test

memory limit per test

input

output

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 

codeforces 501A Contest_ide

 points.

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

Input

abcd (250 ≤ a, b ≤ 3500, 0 ≤ c, d ≤ 180).

a and b are divisible by 250

Output

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.

Examples

input

500 1000 20 30

output

Vasya

input

1000 1000 1 1

output

Tie

input

1500 1000 176 177

output

Misha


水题

#include<bits/stdc++.h>
using namespace std;
int main()
{
int a,b,c,d;
cin>>a>>b>>c>>d;
int m=max(3*a/10,a-a/250*c);
int n=max(3*b/10,b-b/250*d);
if(m>n)
printf("Misha\n");
else if(n>m)
printf("Vasya\n");
else
printf("Tie\n");
return 0;
}