﻿program c2;

var
  a, b: integer;
  c: real;

begin
  a := 2;
  b := 3;
  c := a + 4 / 2 * 3 + 6;
  write(c);
end.