int N, M; cin >> N; M = ________; if (M == 0) printf("%d个月后12月", N); else printf("%d个月后是%d月", N, M);
N % 12
9 + N % 12
(9 + N) / 12
(9 + N) % 12