#include int main(void) { int F[3], N; scanf("%d%d%d", &F[0], &F[1], &N); F[2] = F[0] ^ F[1]; printf("%d\n", F[N % 3]); return 0; }