using namespace std; int main(){
int A,B,a,b,L;
cin>>A>>B>>L;
double cha=1e8;
for(int i=0; i<=L; i++){
for(int j=1; j<=L; j++){
double x=(double)i/j;
double y=(double)A/B;
if(x>=y&&x-y<cha){
a=i;
b=j;
cha=x-y;
}
}
}
cout<<a<<' '<<b;
return 0;
}
比赛已结束。