Problem Description
Input
}
return 0;
}
return 0;
}
Output
每组输出数据占一行。
Sample Input
1 2
Sample Output
ECJTU ACM
Author
zhengjinke2123
解法:没什么好说的
#include<stdio.h>
//#include<bits/stdc++.h>
#include<string.h>
#include<iostream>
#include<math.h>
#include<sstream>
#include<set>
#include<queue>
#include<map>
#include<vector>
#include<algorithm>
#include<limits.h>
#define inf 0x3fffffff
#define INF 0x3f3f3f3f
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define LL long long
#define ULL unsigned long long
using namespace std;
int main()
{
int n;
while(cin>>n)
{
if(n%2==0)
{
cout<<"ACM"<<endl;
}
else
{
cout<<"ECJTU"<<endl;
}
}
return 0;
}