#include
#include
#include
void main ()
{
int ced,edad,tel;
char nom [10];
char dir [10];
clrscr();
gotoxy(8,6);
cout<<"MIS DATOS";
gotoxy(6,6);
cout<<"ingrese cedula " ;
cin>>ced;
gotoxy(8,8);
cout<<"ingrese telefono ";
cin>>tel;
gotoxy(3,3) ;
cout<<"ingrese la edad ";
cin>>edad;
gotoxy(1,9);
cout<<"ingrese su nombre ";
cin>>nom;
gotoxy(5,8);
cout<<"ingrese direccion ";
cin>>dir;
cout<<"MIS DATOS SON"; endl;
cout<
}