#include <iostream>
using namespace std;
unsigned x,y,n=0;
int main()
{
do{
cout << "x="; cin >> x;
}while(x==0);
cout << "y="; cin >> y;
while(n*x<y)
n++;
if(n==1)
cout << endl << "O sticla" << endl;
else
cout << endl << n << " sticle" << endl;
return 0;
}