#include <iostream.h>

using namespace std;

int main(){
   
   int i;
   char c;
   
  
   i = 1; 
   c = '*';

   ////////////////////////////////////// 
   //	print five stars to the screeen
   ///////////////////////////////////// 
    while (i <= 5)
   {
         cout << c;
         i++;
   }
      
   cout << endl ;
 
   ////////////////////////////////////	 
   // print 10 numbers to the screen 
   ////////////////////////////////////
   for (int i = 1; i<=10; i++)
   //{
   //   cout << i << endl;
   //
   //}
   
   return 0;
}

