#include <iostream>
#include <iomanip>

int main() {
   std::cout << 3 << ":" << std::setfill('0') << std::setw(2) << 5;
}