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