program Knuga; {$APPTYPE CONSOLE} var h,s:integer; n:real; begin readln(s,h); n:=0; n:=s*h/60; writeln(n:2:2); readln; end.