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