A, B = map(int, input().split())
num = B - A + 1
if A % 2 == 0:
if B % 2 == 0:
ans = ((num - 1) // 2) % 2 ^ B
else:
ans = (num // 2) % 2
else:
if B % 2 == 0:
ans = A ^ B ^ ((num - 2) // 2) % 2
else:
ans = A ^ ((num - 1) // 2) % 2
print(ans)