var a, b: integer; begin writeln('Sisesta a ja b'); readln(a, b); writeln; writeln('a=', a, ' b=', b); writeln('a*b=', a*b); end.