Cows

Problem Statement

Given a number n, complete the phrase “On the meadow grazes...” with the correct form of the word “cow” in Russian.

Input

A number n is given (n < 100).

Output

Output the entered number n followed by one of the words (in Latin script): korov, korova, or korovy. For example: 1 korova, 2 korovy, 5 korov. There must be exactly one space between the number and the word.

Example

[{'input': '1', 'output': '1 korova'}]