x,y,z = map(int,input().split()) if z < x : ans = z elif z < y : ans = z-1 else : ans = z-2 print(ans)