// Program Shell1 is a program shell with a function.

#include <iostream>
using namespace std;

void  Print();

int main ()
{
    Print();
    return 0;
}

//**************************************                    

void  Print()
{                                                                                                                        
    /* TO BE FILLED IN */                                  
}    

