var   a,b,c:real;
begin
write ('a=');
readln (a);
write ('b=');
readln (b);
c:=a*b;
write ('c','=',c:0:0);

end.

