#19956: __解題


stu1051086@ms2.cshs.kh.edu.tw (同學洪啟哲)


#include<stdio.h>
#include<stdlib.h>
int main(){
int M,D,S;
scanf("%d %d",&M,&D);
S=(M*2+D)%3;
if(S=0){
printf("普通");
}
if(S=1){
printf("及");
}
if(S=2){
printf("大吉");
}
return 0;
}