f = 'I II III IIII V VI VII VIII IX X XI XII'.split() s1, t=input().split() s2=f[(f.index(s1)+int(t))%len(f)] print(s2)