#include using namespace std; int main() { int f0, f1, n; cin >> f0 >> f1 >> n; int f[] = {f0, f1, f0 ^ f1}; cout << f[n % 3] << endl; }