--with A000090;
with A000091;
--with A000092 ; -- comment out  or  provide host math library in A000092.ADA
with A000093;
--with A000094;
with Rational_Io;
procedure Composite is
begin
    --A000090;
    Rational_Io.Put_Line
       (Item => "A000090 did not compile - uses io instantiations");
    A000091;
-- A000092 ; -- comment out  or  provide host math library in A000092.ADA
    A000093;
--    A000094;
    Rational_Io.Put_Line
       (Item => "A000094 did not compile - uses unsupported Long_Integer");
end Composite;