import java.util.*;
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String[] input = br.readLine().split(" ");
public static long GCD(long a, long b){
if(b == 0) return a;
return GCD(b, a % b);
}
private static int lcm(int a, int b) {
return a * b / gcd(a, b);
}
String str = "hello";
String reverse = new StringBuffer(str).reverse().toString();
// reverse = "olloeh"