提交时间:2026-06-05 14:51:37

运行 ID: 89795

#include<bits/stdc++.h> using namespace std; int main(){ int day,h; cin >> day; h=day%6; if(h==1||h==2||h==3){ cout << "红"; } else if(h==6){ cout<<"白"; } else cout<<"黄"; return 0; }