Чему равна сумма чисел х и у при х=10010 у=158
var
x, y, s : integer;
begin
x := 10010;
y := 158;
s := x+y;
writeln(s);
end.