program Formtalk;

uses
  Forms,
  Input in 'INPUT.PAS' {InputForm},
  Output in 'OUTPUT.PAS' {OutputForm};

{$R *.RES}

begin
  Application.CreateForm(TInputForm, InputForm);
  Application.CreateForm(TOutputForm, OutputForm);
  Application.Run;
end.