#include "bits/stdc++.h" #include #define REP(i, n) for(decltype(n) i = 0; i < (n); i++) #define REP2(i, x, n) for(decltype(x) i = (x); i < (n); i++) #define REP3(i, x, n) for(decltype(x) i = (x); i <= (n); i++) #define RREP(i, n) for (decltype(n) i = (n) - 1;i >= 0; i--) #define ALL(a) (a).begin(),(a).end() #define SORT(c) sort((c).begin(),(c).end()) #define DESCSORT(c) sort(c.begin(), c.end(), greater()) #define LL long long int #define LD long double #define INF 1000000000 #define PI 3.14159265358979323846 #define _CRT_SECURE_NO_WARNINGS using namespace std; // N, E, S, W const int dx[4] = { -1, 0, 1, 0 }; const int dy[4] = { 0, 1, 0, -1 }; typedef pair pii; typedef pair pll; typedef vector vi; typedef vector vvi; typedef vector vll; //============================================== int func(string s) { if (s == "I") return 1; if (s == "II") return 2; if (s == "III") return 3; if (s == "IIII") return 4; if (s == "V") return 5; if (s == "VI") return 6; if (s == "VII") return 7; if (s == "VIII") return 8; if (s == "IX") return 9; if (s == "X") return 10; if (s == "XI") return 11; if (s == "XII") return 12; } string func2(int a) { if (a == 1) return "I"; if (a == 2) return "II"; if (a == 3) return "III"; if (a == 4) return "IIII"; if (a == 5) return "V"; if (a == 6) return "VI"; if (a == 7) return "VII"; if (a == 8) return "VIII"; if (a == 9) return "IX"; if (a == 10) return "X"; if (a == 11) return "XI"; if (a == 12) return "XII"; } int main() { ios::sync_with_stdio(false); cin.tie(0); string s; int t; cin >> s >> t; int sTime = func(s); sTime += t; int ans = sTime % 12; if (ans < 0) { ans += 12 ; } cout << func2(ans) << "\n"; return 0; }