#include <bits/stdc++.h>
using namespace std;
int main()
{
string s;
int a,b;
while(scanf("%d/%d",&a,&b)!=EOF)
{
int yushu[10000],ans[10000];
int j=0,k=0;
int jdg=0;
while(a%b)
{
yushu[k++]=a%b;
ans[j++]=a/b;
a=a%b*10;
for(int i=0;i<k-1;i++)
{
if(yushu[i]==yushu[k-1])
{
for(int p=i+1;p<=k-1;p++)
cout<<ans[p];
cout<<endl;
jdg=1;
break;
}
}
if(jdg==1)
break;
}
if(a%b==0)
cout<<0<<endl;
}
return 0;
}
用unordered_map可以