#33258: easy


yp11151151@yphs.tp.edu.tw (908-37陳祈佑)


#include<bits/stdc++.h>
using namespace std;
int main(){
    int m,d,s;
    cin>>m>>d;
    s=(m*2+d)%3;
    if(s==0) cout<<"普通";
    else if(s==1) cout<<"吉";
    else cout<<"大吉";
    return 0;
}