n = int(input()) if n <= 2: print(-1) else: print(n*n*2) for i in range(n*n): print(i+1, i+1) print(i+1, i+1)