#30144: c ++ 解答


mephistoxfaust@gmail.com (舟梅浮永不逆)


 

#include<iostream>
using namespace std;

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