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