/*---------------------------------------------------------------------------
File name: main.cpp
Author: HJin (email: fish_sea_bird [at] yahoo [dot] com )
Created on: 9/19/2007 07:17:19
Environment: Windows XP Professional SP2 English +
Visual Studio 2005 v8.0.50727.762
*/
#include <iostream>
using namespace std;
void function(int hours, int minutes);
int main()
{
int a, b;
cout<<"Enter the number of hours:";
cin>>a;
cout<<"Enter the number of minutes:";
cin>>b;
function(a, b);