F0, F1, N = map(int, raw_input().split()) if N%3 == 0: ans = F0 elif N%3 == 1: ans = F1 else: ans = F0 ^ F1 print ans