n = int(input().strip()) if n == 1: print(-1) elif n % 2 == 1: print(1) else: if n % 4 != 0: print(-1) else: k = n // 4 print(1 if k >= 2 else -1)