a,b=input().split()
c=int(a)+int(b)
if c%7:
    print(c%7)
# 这里应该额外注意正好整除的时候是周日
else:
    print(7)
    
    ```