#include <stdio.h>
int main() {
int count = 0;
// 利用三重循环遍历所有可能的百位、十位、个位取值情况
for (int bai = 1; bai <= 4; bai++) {
for (int shi = 1; shi <= 4; shi++) {
for (int ge = 1; ge <= 4; ge++) {
if (bai!= shi && bai!= ge && shi!= ge) {
count++;
printf("%d\n", 100 * bai + 10 * shi + ge);
}
}
}
}
printf("%d", count);
return 0;
}