{$M 1024,0,0}
Uses Dos;
Procedure qwe;Interrupt;
Begin
Writeln('Я Здесь !');
End;
Begin
SetIntVec(5,@qwe);
Keep(0);
End.