#include "g:\victor\vitodef.h"
#define thisyear 1998
void main(void)

{

int age=0,birthyear;
char yourname[30];
clrscr();
cout<<"What is your name?"<<endl;
cin>>yourname;
cout<<"In what year were you born, "<<yourname<<"?"<<endl;
cin>>birthyear;
cout<<"This year you will be "<<endl;
delay (1000);
while (birthyear+age<=thisyear)

	{

	cout<<age<<endl;
	delay (100);
	age=age+1;

	}

cout<<"years old, "<<yourname<<"!"<<endl;
getche();

}
