#include int main(void) { int age; scanf("%d",&age); if(age > 7){ printf("%d\n",age-7); }else{ printf("-1\n"); } return 0; }