5. bc-4b+10+5a
Javobi:
program Project4;
{$APPTYPE CONSOLE}
uses
SysUtils;
var a,b,c:Integer;
begin
readln(a,b,c);
asm
mul b
mov b,eax
mul c
mov c,eax
add eax,4
mul b
mov b,eax
add eax,10
add eax,5
mul a
mov a,eax
end;
writeln(c)
{ TODO -oUser -cConsole Main : Insert code here }
end.