#include<cstdio> using namespace std; int main() { int a,b,c; while (scanf("%d%d%d",&a,&b,&c)!=EOF) { if (a==b && b==c) printf("*\n"); else if (a==b) printf("C\n"); else if (b==c) printf("A\n"); else printf("B\n"); } return 0; }
Sunday, June 26, 2016
Unknown
Studying at Shahjalal University of Science and Technology, Sylhet.
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment