//
//What is the output of this method?
//

public class MysteryMethod
{   
    public static char mystery(int first_par, int second_par)
    {
        if (first_par >= second_par)
        {
            return 'W';
        }
        else
        {
            return 'H';
        }
    }
    
    public static void main(String[] args) 
    {
        System.out.println(mystery(10, 9) + "ow");
    }
}
