using System; using System.Linq; class No395{ static void Main(){ var age=Int32.Parse(Console.ReadLine()); Console.WriteLine(age<15?-1:age-7); } }