def f(N): K=N//7 if K>0: return K*7+f(N-K) return N N=int(input()) print(f(N))