import java.io.*;

public class DWITE5 {
		public static void main (String [] args) throws IOException {
			PrintWriter outPrint = new PrintWriter(new FileWriter("OUT5.txt"));
			outPrint.println("escape");
			outPrint.close();
		}
}
			
