#include <bits/stdc++.h>
using namespace std;

int main(){
	ios::sync_with_stdio(false);
	cin.tie(0);

	long long f[3] , n; cin >> f[0] >> f[1] >> n;
	f[2] = f[0] ^ f[1];
	cout << f[n % 3] << endl;                   
	return 0;
}