#include <iostream>
#include <string>

using namespace std;

int main()
{
    int i = 1;
    string token;

    while(!cin.eof())
    {
        cin >> token;
        cout << i << ": " << token << '\n';
        i++;
    }    
}