with Ada.Text_IO; use Ada.Text_IO;
with A; use A;
with B; use B;
with B.Z; use B.Z;
with B.R; use B.R;
with B.U;

procedure Main is
begin
   A.E;
   B.E;
   B.Z.X;
   B.R.T;
   B.U;
end Main;
