import java.util.*;
class main{
    public static void main(String[] args ){
        Scanner s=new Scanner(System.in);
        if(!s.hasNextString()){
            System.out.print("Invalid input");
            return;
        }
        String str=s.next();
        if(str.equals("Eagle")){
            System.out.println("The eagle soars high in the sky");
            System.out.print("The eagle screeches");
        }
        else if(str.equals("Hawk")){
            System.out.println("The hawk glides smoothly through the air");
            System.out.print("The hawk shrieks");
        }
        else{
            System.out.print("Invalid input");
        }
    }
}