Задача 1 Урок 14.2

Задача 1 Урок 14.2:

Напишите функцию, которая возвращает сумму трёх целых чисел.

var a, b, c: integer;
function sumOf3(x, y, z: integer):integer;
begin
  result:= x + y + z;
end;
begin
  writeln('write 3 nums');
  readln(a,b,c);
  writeln(sumOf3(a,b,c));
  readln();
end. 

Вывод консоли:

write 3 nums
2
3
4
9