#include <iostream>
#include <iomanip> // For std::setw and std::setfill
int main() {
int hours = 9, minutes = 36, seconds = 7;
// Format and print time as HH:MM:SS
std::cout << std::setw(2) << std::setfill('0') << hours << ":"
<< std::setw(2) << std::setfill('0') << minutes << ":"
<< std::setw(2) << std::setfill('0') << seconds << std::endl;
}
/*
run:
09:36:07
*/