s, t = input().split() roman = ["I","II","III","IIII","V","VI","VII","VIII","IX","X","XI","XII"] print(roman[(roman.index(s) + 1 + int(t)) % 12 - 1])