#include using namespace std; int main() { int time; int hours; int mins; // Get the movie time. cout << "Enter in movie time in mins: "; cin >> time; // Calculate movie hours and min. hours=time/60; mins=time%60; cout << "Hours: " << hours << endl; cout << "Mins: " << mins << endl; // Success return 0; }