Kaucuk
Davor the scientist writes his papers in LATEX. Inspired by LATEX, he came up with Kaučuk. Kaučuk is a very simple program for preparing a piece of text for print. It allows you to number the headings of sections, subsections and subsubsections and prepare them for print.
Kaučuk has only three different commands:
The section command starts a new section. All sections from the input are numbered in the output with positive integers starting from , in the order they appear in the input (see first example).
The subsection command starts a new subsection. Subsections are numbered using two numbers: the number of the section which contains the subsection, and the number of the subsection within the section (see second example). In each section the subsection numbering starts again from (see third example).
The subsubsection command starts a new subsubsection which uses three numbers: the number of the section, the number of the subsection and the number of the subsubsection within the subsection, in a manner similar to subsections within sections (see second example).
It is guaranteed that in the input, each subsection is contained in some section, and each subsubsection is contained in some subsection. Davor might be a fine scientist, but programming is not his strong suit, which is why he is asking you to help him write a program which prepares a text written in Kaučuk for print.
Input
The first line contains a positive integer , the number of lines of Kaučuk commands.
The following lines contain Davor’s Kaučuk code. Each line of code is made up from two strings of characters, separated by a single space: the type of section (section, subsection or subsubsection) and its title. Each title is made up from at most lowercase letters.
Output
In lines you should number and print the titles of the sections, subsections and subsubsections from Davor’s code.