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