n = int(input()) i = 1 while i * i <= n: if n % i == 0: if (i + n//i) % 2 == 0: print(1) exit() i += 1 print(-1)