CodeforcesMay 13, 2025

Mahmoud and Ehab and the even-odd game

Hazrat Ali

Codeforces

Mahmoud and Ehab play a game called the even-odd game. Ehab chooses his favorite integer n and then they take turns, starting from Mahmoud. In each player's turn, he has to choose an integer a and subtract it from n such that:

  • 1 ≤ a ≤ n.
  • If it's Mahmoud's turn, a has to be even, but if it's Ehab's turn, a has to be odd.

If the current player can't choose any number satisfying the conditions, he loses. Can you determine the winner if they both play optimally?

Input

The only line contains an integer n (1 ≤ n ≤ 109), the number at the beginning of the game.

Output

Output "Mahmoud" (without quotes) if Mahmoud wins and "Ehab" (without quotes) otherwise.

Examples
Input
1
Output
Ehab
Input
2
Output
Mahmoud


Solution

#include <bits/stdc++.h>
using namespace std;

int main() {
  int a;
  cin >> a;
  if (a % 2 > 0) {
    cout << "Ehab" << endl;
  } else {
    cout << "Mahmoud" << endl;
  }
  return 0;
}






Comments