#include int main(void){ int A; int ans; scanf("%d",&A); ans = 10 + (A - 17); if(ans < 8){ printf("-1\n"); }else{ printf("%d\n",ans); } return 0; }