#include #include #include using namespace std; using namespace atcoder; using mint = modint998244353; #define rep(i,n) for (int i = 0; i < (n); ++i) #define Inf32 1000000005 #define Inf64 4000000000000000001LL unsigned long xor128() { static unsigned long x=123456789, y=362436069, z=521288629, w=88675123; unsigned long t=(x^(x<<11)); x=y; y=z; z=w; return (w=(w^(w>>19))^(t^(t>>8))); } int main(){ int n,m; cin>>n>>m; vector t(m); rep(i,m){ t[i] = xor128(); } dsu D(n); vector a(n); rep(i,m){ int x,y;cin>>x>>y; x--,y--; a[x] = t[i]; a[y] = t[i]; } long long cur = 0; map mp; rep(i,n){ if(a[i]!=0)cur ^= a[i]; else{ if(mp.count(cur)){ D.merge(i,mp[cur]); } else{ mp[cur] = i; } } } rep(i,n){ if(a[i]!=0)continue; if(D.size(i)%4==2){ cout<<"Akane"<