import java.lang.reflect.Field;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;


public class Main {
    public static void main(String[] args) throws Exception {
        Class cache = Integer.class.getDeclaredClasses()[0];
        Field c = cache.getDeclaredField("cache");
        c.setAccessible(true);
        Integer[] array = (Integer[]) c.get(cache);
        List<Integer> f = Arrays.asList(array);
        Collections.shuffle(f);
        
        System.out.printf("%d",2 + 2);
    }
}