#include <iostream.h>
#include <conio.h>
main()
{
double a,b,c,x,z,i=0,j,f=0;
int y;
cout<<"enter a,b,c:";
cin>>a>>b>>c;
x=(c-b)/a;
z=x;
while(f==0)
{
y=x;
if(y==x)
f++;
else
{
i++;
x*=10;
}
}
cout<<z;
if(i==0)
cout<<".";
for(j=0;j<6-i;j++)
cout<<"0";
getch();
}
}