#include <stdio.h>
int main() {
char surnameInitial;
int studentID, digit, sumOdd = 0, productEven = 1, asciiValue, lastTwoDigits;
// 获取用户输入的姓氏首字母和学号
scanf(" %c", &surnameInitial); // 姓氏首字母
scanf("%d", &studentID); // 学号
asciiValue = (int)surnameInitial; // 姓氏首字母ASCII值
// 判断学号的奇偶性
if (studentID % 2) { // 学号为奇数
for (int tempID = studentID; tempID; tempID /= 10) {
digit = tempID % 10;
sumOdd += digit % 2 ? digit : 0;
}
int remainderSum = sumOdd % 3;
int remainderAscii = asciiValue % 3;
printf("%d %d\n", remainderSum < remainderAscii ? remainderSum : remainderAscii,
remainderSum < remainderAscii ? remainderAscii : remainderSum);
} else { // 学号为偶数
for (int tempID = studentID; tempID; tempID /= 10) {
digit = tempID % 10;
productEven *= digit && digit % 2 == 0 ? digit : 1;
}
lastTwoDigits = productEven < 10 ? (productEven + 23) % 100 : productEven % 100;
printf("%d %d\n", lastTwoDigits / 10, lastTwoDigits % 10);
}
return 0;
}