c#include <bits/stdc++.h> using namespace std; int main(){ cin.tie(NULL); cout.tie(NULL); ios_base::sync_with_stdio(0); int A, B, C; cin >> A >> B >> C; if(B >= C){ cout << -1 << "\n"; }else{ cout << A / (C - B) + 1 << "\n"; } }```
#include <bits/stdc++.h> using namespace std; int main(){ cin.tie(NULL); cout.tie(NULL); ios_base::sync_with_stdio(0); int A, B, C; cin >> A >> B >> C; if(B >= C){ cout << -1 << "\n"; }else{ cout << A / (C - B) + 1 << "\n"; } }```