f1, f2, n = map(int, input().split()) f3 = f1 ^ f2 if n % 3 == 0: print(f1) elif n % 3 == 1: print(f2) else: print(f3)