X, Y, Z = [int(i) for i in input().split()] ans = Z if X <= Z: ans = ans - 1 if Y <= Z: ans = ans - 1 print(ans)