#include "iostream.h"

#include "dos.h"

main()

{

//PROGRAM AIM : to display the string on a specified location,

//               currently not working

      union REGS inregs,outregs;

 //   char str[10];

 //   int row,col;

 //   cout<<"\nEnter the string to be printed : ";

 //   cin>>str;

 //   cout<<"\nEnter row : ";

 //   cin>>row;

 //   cout<<"\nEnter column : ";

 //   cin>>col;

      inregs.h.ah=2;

      inregs.h.dh=10;

      inregs.h.dl=10;

      int86(16,&inregs,&outregs);

      cout<<"Anand Kumar Chauhan";

      return 0;

}