# -*- coding: utf-8 -*- input_age = int(input()) if 15 <= input_age: print(input_age - 7) else: print(-1)