program varenuk; {$APPTYPE CONSOLE} var n,v:integer; s:real; begin readln(n,v); s:=0; s:=n*v/1000; writeln(s:2:5); readln; end.