#include int main() { int prod = 1; for( int i=2; i < 20; i++ ) { prod = prod * i; cout << i << "! = " << prod << endl; } return( 0 ); }