using System;
public class Program
{
public static void Main()
int year,month ,m;
Console.Write("Enter of month :");
month = int.Parse(Console.ReadLine());
year = month / 12;
m= month % 12;
Console.WriteLine("{0} month {1} year {2} months" ,month,year,m);
}