program Varenuku; {$APPTYPE CONSOLE} var n:integer; v,c:real; begin readln(n,v); c:=0; c:=v/1000*n; writeln(c:6:4); readln; end.