Определи значение перменной d после выполнения программы: var a, b, c, d:integer; begin a:=6; b:=5; c:=14; if (a+b) < c then d:=c - a else d:= c-b; writeln(d); end.
Задание

Определи значение перменной d после выполнения программы:
var a, b, c, d:integer;
begin
a:=6; b:=5; c:=14;
if \(a\+b\) < c then d:=c - a
else d:= c-b;
writeln\(d\);
end.