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