Many of you know the famous Fibonacci sequence F:
Thus each number in sequence is a sum of two previous numbers except two first which are define as 1.
You've decided to create you own Fibonacci sequence. It's very similar to the one described above, but the first two numbers now are arbitrary non-negative integers A and B ( F[1] = A and F[2] = B ). Now you want to compute the N-th number in your sequence.
Input
The only line contains 3 space-separated integers A, B, N.
Output
Output one integer - the N-th number in your sequence.
Constraints