#29295: __測試


rayontkkg@gmail.com (Leon Chen)


#include<iostream>

using namespace std;

 

int main(){

int m,d,s;

cin>>m>>d;

s = (m*2+d)%3;

switch(s){

case 1:

cout<<"吉";

                break;

case 2:

cout<<"普通";

                break;

 

 

}

 

    return 0;

}