링크텍스트
N = int(input()) cnt = 0 while N >= 0 and N%5: N -= 3 cnt += 1 if N < 0: cnt = -1 else: cnt += int(N/5) print(f'{cnt}')