Files

8 lines
118 B
C++

#include <iostream>
int main(void)
{
int a,b,c;
std::cin >> a >> b >> c;
std::cout << (c - b ) / a << std::endl;
}