n=int(input()) d=1 while True: if d%7==0:n+=6 n-=1 if n==0: print(d) exit() d+=1