#include #include int main() { double a,b,c; scanf("%ld %ld %ld", &a, &b, &c); double x = c / (a-b); printf("%d\n", (int) ceil(x)); return 0; }