#55607: C++


yp11550226@yphs.tp.edu.tw (705-09梁允菲)


#include <iostream>

using namespace std;

int main(){
    int M,D;
    cin>>M>>D;
    int S=(M*2+D)%3;
    switch(S){
        case 0:
            cout<<"普通";
            break;
        case 1:
            cout<<"吉";
            break;
        case 2:
            cout<<"大吉";
    }
}