#include using namespace std; int n; int main() { cin >> n; if(n < 15) cout << -1 << endl; else cout << n - 7 << endl; return 0; }