import sys

n = int(input())
res = n % 7 + 1  #对7取模计算,+1计算第二天
print(res)