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