// Coroana te rog
// Compexitatea temporala este O(1)
#include <iostream>
inline size_t offset(const size_t a, const size_t b) {
const size_t x = a / b;
return x + (b * x < a);
}
int main() {
size_t x, a, b, y, c, d;
std::cin >> x >> a >> b >> y >> c >> d;
if (a > b)
std::swap(a, b);
if (c > d)
std::swap(c, d);
size_t m[][3] = {
{offset(a, x), b / x, m[0][1] - (m[0][0] - 1)},
{offset(c, y), d / y, m[1][1] - (m[1][0] - 1)}
};
if (m[0][2] == m[1][2])
std::cout << "Egalitate";
else {
bool test = m[0][2] < m[1][2];
std::cout << "Ioana \0Maria " + test * 7 << m[test][2];
}
}