#include <iostream>
using namespace std;
void time(int h,int m)
{
cout<<"Time: "<<h<<":"<<m<<endl;
}
int main()
{
cout<<"Enter the number of hours: ";
int i,j;
cin>>i;
cout<<"Enter the number of hours: ";
cin>>j;
time(i,j);
return 0;
}
#include <iostream>
using namespace std;
void time(int h,int m)
{
cout<<"Time: "<<h<<":"<<m<<endl;
}
int main()
{
cout<<"Enter the number of hours: ";
int i,j;
cin>>i;
cout<<"Enter the number of hours: ";
cin>>j;
time(i,j);
return 0;
}