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