#include int main(void) { int L, R, M; scanf("%d%d%d", &L, &R, &M); if (M < R - L + 1) printf("%d", M); else printf("%d", R - L + 1); return 0; }