typedef long long ll; #include using namespace std; int main() { ll x,y,z; std::cin >> x>>y>>z; std::cout << z-(z>=y)-(z>=x) << std::endl; }