You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
264 B

#include <bits/stdc++.h>
using namespace std;
int main() {
for (char i = 'A'; i <= 'D'; i++) {
if ((i != 'A') + (i == 'C') + (i == 'D') + (i != 'D') == 3) {
cout << i << endl;
break;
}
}
return 0;
}