using System; namespace yukicoder { class Program { static void Main(string[] args) { string[] s = Console.ReadLine().Split(' '); string[] s1 = { "I", "II", "III", "IIII", "V", "VI", "VII", "VIII", "IX", "X", "XI", "XII" }; int a = int.Parse(s[1]); int t = 0; int t1 = 0; for (int i = 0; i < 12; i++) { if (s1[i] == s[0]) { t = i + 1; t1 = t; } } int count = t1-1; t += a; if (t == 0) { count = 11; Console.WriteLine(s1[count]); } else if (t > 12) { t %= 12; if (t == 0) { Console.WriteLine(s1[t1 - 1]); } if (t != 0) { t -= 1; Console.WriteLine(s1[t]); } } else if (t < 0) { int k = a * -1; k %= 12; if (k == 0) { Console.WriteLine(s1[t1 - 1]); } else { for (int j = 0; j < k; j++) { count--; if (count < 0&&j!=k) { count = 11; } } Console.WriteLine(s1[count]); } } else { if (t != 0) { t -= 1; } Console.WriteLine(s1[t]); } } } }