using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace mainSolution { public class MyException : Exception { public MyException(string messege) : base(message: messege + "\n\n\n Exception founded by Decibit\n\n\n") { } public MyException() : base() { } public void Messsage() { Console.WriteLine("\n\n\n\n\n\n Invalid number, please enter a number from 1 to 12 \n\n\n\n\n\n"); } } class Input { private static IEnumerator getin() { while (true) foreach (string s in Console.ReadLine().Split().Where(x => x.Length > 0)) yield return s; } private IEnumerator inp = getin(); public string GetString() { inp.MoveNext(); return inp.Current; } public int GetInt() { return int.Parse(GetString()); } public long GetLong() { return long.Parse(GetString()); } public double GetDouble() { return double.Parse(GetString()); } } static class Program { static public Input cin = new Input(); static int f(int x) => x % 5 == 0 ? x / 5 : ++x; static void Main(string[] args) { int x = cin.GetInt(); Console.WriteLine(f(x)); } } }