def main(): A = int(input()) x = A - 7 if x < 8: print(-1) else: print(x) main()