f, s, n = gets.chomp.split.map(&:to_i) case n%3 when 0 puts f when 1 puts s when 2 puts f^s end