#include <iostream>
using namespace std;
int main(void)
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int A, B, C;
int ans;
cin >> A >> B >> C;
if ((C - B) <= 0)
{
ans = -1;
}
else
{
ans = A / (C - B) + 1;
}
cout << ans << "\n";
return 0;
}