文件目录

#include <iostream>
using namespace std;
int main()
{
    int n, a, b;
    cin >> n >> a >> b;
    cout << n / (a + b);
    return 0;
}