program multiplicacao;
var 
  x,y: integer;
  r: integer;
Begin  
  readln x;
  readln y;
  r:=x*y;
  writeln r;
end.