aboutsummaryrefslogtreecommitdiff
path: root/problems/aweirdclock/attachments/template.cpp
blob: b4d0fd067e3e66677d1a59fc1077aadf1342bd32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>

using namespace std;

int main()
{
    string readable_text;
    getline(cin, readable_text);

    // Write an answer using cout. DON'T FORGET THE "<< endl"
    // To debug: cerr << "Debug messages..." << endl;

    cout << "HH:MM" << endl;
}