F0, F1, N = map(int, raw_input().strip().split(" ")) ans = { 0: F0, 1: F1, 2: F0 ^ F1 } print(ans[N % 3])