99 , 96 , 93 , 90 , ... , 3
#include <iostream.h>
#include <conio.h>
main()
{
int i;
for(i=99;i>0;i-=3)
cout<<i<<endl;
getch();
}