N = int(input()) for i in range(1, int(N ** 0.5) + 1): if N % i == 0: if (N // i - i) % 2 == 0: print(1) break else: print(-1)