class Degree4MonomialMEP {
    static void entryPoint(int n) {
        for(int i = 0; i < n; i++) {
            for(int j = 0; j < n; j++) {
                for(int k = 0; k < n; k++) {
                    for(int l = 0; l < n; l++) {
                        // tick!
                    }
                }
            }
        }
    }
    public static void main(String[] args) {
        java.io.Console console = System.console();
        entryPoint(Integer.parseInt(console.readLine()));
    }
}
