import math print(math.ceil(int(input())/5))
d = int(input()) if d%5 == 0: print(d//5) else: print(d//5+1)