Matryoshka Dolls This is the problem I am stuck on. I wrote the source code in C++, which is down below. It failed on the 2nd test.
#include<iostream>
using namespace std;
int main(){
int s, x;
cin >> s >> x;
cout << (s-x)/x << endl;
}
If you have some time to spare, please help me. Thank you!!