# 実験すると3個をループすることがわかる F0, F1, N = map(int, input().split()) F2 = F0^F1 F = [F0, F1, F2] ans = F[N%3] print(ans)