• Time limit: 1.00 s
  • Memory limit: 512 MB

Uolevi is taking part on the Aalto competitive programming course. He's working on a solution to Stone Game. It's the first contest of the course, but he's already getting a Wrong Answer! Help him find the bug.

Input

No input.

Output

Your program should output a test case where Uolevi's solution fails.

Constraints (of your output)

  • 1 \le a, b \le 300

Uolevi's code

#include <bits/stdc++.h>

using namespace std;

int main() {
    
    int a, b;
    cin >> a >> b;

    if(a == b) cout << "maja\n";
    else cout << "Uolevi\n";

}