#include #include #include #include #include #include #include #include #include #include using namespace std; #define INIT cin.tie(0); ios::sync_with_stdio(false); #define FOR(i, a, n) for (int i = a; i < n; i++) #define REP(i, n) for(int i = 0; i < n; i++) int main() { INIT; string s; int t; cin >> s >> t; string R[13] = {"XII", "I", "II", "III", "IIII", "V", "VII", "VIII", "IX", "X", "XI", "XII"}; int t1; REP(i, 12){ if(s == R[i]){ t1 = i; break; } } int t2; if(t + t1 < 0){ t2 = 12 - (abs(t + t1) % 12); }else{ t2 = (t + t1) % 12; } cout << R[t2] << endl; return 0; }