#include using namespace std; int main(){ int A; cin >> A; if(A <= 14){ cout << -1 << endl; }else{ cout << A - 7 << endl; } }