program molotok; {$APPTYPE CONSOLE} var k,l:integer; f:real; begin readln(l,k); f:=l*10/k; writeln(f:2:2); readln; end.