#include <iostream.h>
#include <iomanip.h>
#include <math.h>
int main()
{
    int i=1, x=1;
    for(;i<=16;)
    {
      x=i*x;          
      cout << setw(3)  << i << "! =" << setw(30) << x << endl;  
      i++;        
                }
                
  /*  unsigned long int j=1, y=1;
    for(;j<=16;)
    {
      y=j*y;          
      cout << setw(3)  << j << "! =" << setw(30) << y << endl;  
      j++;        
                } */
                
                
cout << "\nProgrammende...";
cin.get (); cin.get();
return(0);    
    }

/*

*/
