An elephant decided to visit his friend. It turned out that the elephant's house is located at point 0 and his friend's house is located at point x(x > 0) of the coordinate line. In one step the elephant can move 1, 2, 3, 4 or 5 positions forward. Determine, what is the minimum number of steps he need to make in order to get to his friend's house.
一头大象决定去拜访他的朋友。大象的房子位于数轴上的0点,它的朋友的房子位于数轴上的x点(x > 0)上。大象可以一步向前移动1、2、3、4或5个坐标点。试确定他到达朋友家所需的最少步数。
The first line of the input contains an integer x (1 ≤ x ≤ 1 000 000) — The coordinate of the friend's house.
输入的第一行包含一个整数x (1≤x≤1 000 000)(x为朋友家的坐标)。
Print the minimum number of steps that elephant needs to make to get from point 0 to point x.
输出出大象走到朋友家所需的最少步数
In the first sample the elephant needs to make one step of length 5 to reach the point x.
对于样例一,大象只需要移动 1次,走五个单位即可到达点 x 。
In the second sample the elephant can get to point x if he moves by 3, 5 and 4. There are other ways to get the optimal answer but the elephant cannot reach x in less than three moves.
对于样例二,大象可以移动 3 次,走三个单位,五个单位以及四个单位;虽然存在其他到达点 x 的走法,但是移动次数不会少于 3。