def solve(): ans = 1 N = int(input()) if N==1 or N==4 or N%4==2: return -1 return ans print(solve())